You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Windows-API-examples/main/classic_console.c

9 lines
128 B

#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("This is a classic C program.");
return EXIT_SUCCESS;
}