All pastes #368347 Raw Edit

Miscellany

public text v1 · immutable
#368347 ·published 2007-02-23 00:29 UTC
rendered paste body
#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);
}
}