c-course/c-basic/helloworld.c

6 lines
101 B
C

#include <stdio.h>
int main(){
printf("hello world in C Programming Language\n");
return 0;
}