The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
clrscr() is an inbuilt library function which is used to clear the previous output displayed in a screen. clrscr() is defined in #include <conio.h> header file.
#include <stdio.h> //header file section #include <conio.h> int main() { printf("Before clrscr"); clrscr(); printf("clrscr() will clear the screen"); return 0; }
clrscr(); works in Turbo C/C++ compiler.
exit() is an inbuilt library function which is used to terimate the program irrespective of the statements followed by it. exit() is defined in #include <stdlib.h> header file.
#include <stdio.h> //header file section #include <stdlib.h> int main() { printf("This statement is before exit(); function "); exit(0); printf("It will not display "); return 0; }
exit (some numeric value); will exit the program.
sleep() is an inbuilt library function which is used to delay the program's output. sleep() is defined in #include <unistd.h> header file.
#include <stdio.h> #include <unistd.h> int main() { printf("Countdown... "); printf("\n 3"); sleep(1); printf("\n 2"); sleep(1); printf("\n 1"); sleep(1); printf("\n Celebration Time "); return 0; }
sleep (seconds); will delay the program's output with respect to seconds which you mentioned.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019