Why clrscr is used after variable declaration?
Answer / Manoj Verma
In C programming, the 'clrscr()' function (usually defined in conio.h or graphics.h) is used to clear the console screen after variable declarations or other output operations, making it easier to view subsequent outputs.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program of palindrome(madam=madam) using pointer?
What is the difference between formatted&unformatted i/o functions?
How can you call a function, given its name as a string?
Why pointers are used?
what is the flow of execution in cprogram? ex:printf();,scanf();
Why is c used in embedded systems?
What do you mean by team??
Explain how can you restore a redirected standard stream?
What does != Mean in c?
What are the application of c?
Explain what is wrong with this program statement? Void = 10;
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }