| Ch Standard Edition Demos | |
Ch supports all features in the ISO C standard called C90
which was ratified in 1990.
#include <stdio.h>
int main() {
printf("Hello, world\n");
return 0;
}
The output is: Hello, world |
|