Clear Screen in C

Clearing screen is important for big projects, let's seen how you can do this in your c program too.
First, we'll add a new library file, which will help us to clear the screen without calling this library, clearing screen task can't be done.
Then, we'll write a code which will clear the screen in cmd.
How to Clear Screen in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> // library used for clear screen | |
void main() | |
{ | |
system("cls"); // syntax to clear the screen | |
printf("Screen is cleared"); | |
} |
You Might Like:
Comments
Post a Comment