Files
lab0_letsbegin/hello.c
2025-11-23 23:09:17 +03:00

8 lines
74 B
C

#include <stdio.h>
int main(){
printf("Hello World!\n");
return 0;
}