mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-24 11:25:30 +00:00
9 lines
97 B
C
9 lines
97 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
|
|
puts("This is a classic C program.");
|
|
|
|
return 0;
|
|
}
|