c-course/c-basic/helloworld.c
2024-06-30 15:02:33 +03:00

6 lines
No EOL
101 B
C

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