Write a program that prints the following lines on the screen
C++ is a High level Language
It is a language that uses Compiler as language translator
This is a case-sensitive language
It is used to solve computational problems of computer
For example 3+9=12
#include <iostream>
using namespace std;
int main() {
cout<<"C++ is a High level Language"<<endl;
cout<<"It is a language that uses"<<endl;
cout<<"Compiler as language translator"<<endl;
cout<<"This is a case sensitive language"<<endl;
cout<<" It is used to solve computational problems of computer"<<endl;
cout<<"for example 3+9=12"<<endl;
return 0;
}
Comments
Leave a comment