Update classic_console.c

This commit is contained in:
Jan Bodnar 2016-04-06 14:07:40 +02:00
parent 17026b8e0e
commit a769bcc6fc

View File

@ -1,9 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("This is a classic C program.");
return EXIT_SUCCESS;
return 0;
}