any one c++ program
Answers
Answered by
1
Answer:
Write your C++ program as shown below and save it ( ctrl+s ). ...
Once you have written the program, click on compile and run.
An output window will appear showing the result that is, Hello World printed.
Now, you are ready to go for the next chapter.
Answered by
2
Answer:
// Your First C++ Program
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Explanation:
Output will be Hello World
Follow me everyone
Similar questions