C++ Program to Use Clrscr Function in VSCode
Master C++ with Real-time Projects and Kickstart Your Career Start Now!!
Program 1
#include<iostream>
#include<stdio.h>
#define clrscr() system("cls");
using namespace std;
int main()
{
clrscr();
int a,b,c;
cout<<"Enter two number";
cin>>a>>b;
c=a+b;
cout<<"Addition is :" <<c;
return 0;
}
Did you know we work 24x7 to provide you best tutorials
Please encourage us - write a review on Google

