Sunday, 25 December 2011

sleep

#include<stdio.h>
#include<dos.h>
 
main()
{
printf("Wait for 5 seconds to exit.\n");
sleep(5);
return 0;
}

No comments:

Post a Comment