Sunday, April 12, 2020

Basic Structure of C++


This is the basic structure of C++ program

#include<iostream>
using namespace std;
void main()
{
system("pause");
}

No comments:

Post a Comment

Maximum No

//Find the Maximum No between Three Nos' int i=10,o=20,k=30; if(i>o &&i>k) { cout<<"1st is g\n";...