12
hello_world.c
Normal file
12
hello_world.c
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Learning C with some easy code
|
||||
* Hello World
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello world!\n");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Reference in New Issue
Block a user