13 lines
163 B
C
13 lines
163 B
C
/*
|
|
* Learning C with some easy code
|
|
* Hello World
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
printf("Hello world!\n");
|
|
return EXIT_SUCCESS;
|
|
}
|