mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-14 15:55:30 +00:00
10 lines
128 B
C
10 lines
128 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
|
|
puts("This is a classic C program.");
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|