С Playground
Want to test some idea, or check how some language construct works? Do it here.
Note: it's plain C, not C++! std::cout and things like that will not work here.
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
Want to test some idea, or check how some language construct works? Do it here.
Note: it's plain C, not C++! std::cout and things like that will not work here.
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
This page is a part of C programming language course; if you want, you can start from the beginning.