The following program help us to delay program execution
#include <stdlib.h>
#include <stdio.h>
int main()
{
printf("This is Msg_1 \n");
_sleep(6000);//will sleep...
system("regedit");
return 0;
}
#include <stdlib.h>
#include <stdio.h>
int main()
{
printf("This is Msg_1 \n");
_sleep(6000);//will sleep...
system("regedit");
return 0;
}
0 comments:
Post a Comment