mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-17 11:05:58 +00:00
16 lines
210 B
Plaintext
16 lines
210 B
Plaintext
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <ctype.h>
|
||
|
#include <conio.h>
|
||
|
|
||
|
#pragma static-locals(1);
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
printf("\nHello! Press a key to reboot...\n");
|
||
|
cgetc();
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|