Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
How to clear screen?
0
votes
asked
Feb 16, 2018
by
Biohnd
Please
log in
or register to answer this question.
4 Answers
+1
vote
answered
Feb 19, 2018
by
anonymous
#include <stdio.h>
#include <conio.h>
int main()
{
//clrscr() is a clear screen function
clrscr();
}
Please
log in
or register to add a comment.
0
votes
answered
Feb 19, 2018
by
Sanjeet Singh
clrcsr(); using inbuilt fuction we can clear of our screen
Please
log in
or register to add a comment.
+1
vote
answered
Feb 20, 2018
by
anonymous
system("clear");
Please
log in
or register to add a comment.
0
votes
answered
Feb 25, 2018
by
anonymous
c progaming me #include<conio.h>
header files include clrscr();
which is not a return typoe function ,and varibale declare afterthen use clrscr();
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...