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