Miscellany
public text v1 · immutable#include <stdio.h>
#include <conio.h>
void main(char * argv[],int argc)
{
while(1)
{
puts("Hello, you pretty world\n");
if(kbhit())
if(getche()=='h')
exit(0);
}
}#include <stdio.h>
#include <conio.h>
void main(char * argv[],int argc)
{
while(1)
{
puts("Hello, you pretty world\n");
if(kbhit())
if(getche()=='h')
exit(0);
}
}