Sunday, 25 December 2011

delay

#include<stdio.h>
#include<stdlib.h>
 
main()
{
printf("This c program will exit in 10 seconds.\n");
 
delay(10000);
 
return 0;
}

No comments:

Post a Comment