c-course/c-basic/helloworld.c

6 lines
101 B
C
Raw Normal View History

2024-06-30 15:02:33 +03:00
#include <stdio.h>
int main(){
printf("hello world in C Programming Language\n");
return 0;
}