c language learning code example
Example 1: c
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
Example 2: learn c language
#include <stdio.h>
int main() {
/* my first program in C */
printf("Hello, World! \n");
return 0;
}