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;
}
You give me 15 seconds I promise you best tutorials
Please share your happy experience on Google

