mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2026-08-06 18:04:46 -04: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;
|
|
}
|