This commit is contained in:
Zoltán Szabó 2020-03-03 18:21:21 +01:00
commit 129b1d5af3

6
du1/program.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}