delay


stdlib.h


/*
Write a program in C for delay stdlib functions
*/

#include<stdio.h>
#include<stdlib.h>

main()
{
    printf("This c program will exit in 10 seconds.\n");       

    delay(10000);                        

    return 0;
}

Post a Comment

0 Comments