myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
L
@Luca_UNI
Hello World
C
1 year ago
#include <stdio.h> int main() { printf("Buongiorno a tutti!\n"); }
random walk
C
1 year ago
#include <stdio.h> #include <stdlib.h> #include <time.h> int jump() { int step = rand()%2; if( step == 0 ) { return 1; } else if( step == 1 ) { return -1;
Previous
Next page