Answer to Question #283832 in C++ for halim

Question #283832

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

1
Expert's answer
2021-12-31T01:42:28-0500
#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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog