whats does this code print on screen? cout<<"hello";
Answers
Answered by
0
Take an Example
// Simple C++ program to display "Hello World"
// Header file for input output functions
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}
━━━━━━━━━━━━━━━━━━━━━━━━━━━
Output:
Hello World
Answered by
0
Answer:
std::cout << "Hello World!"; std::cout prints the content inside the quotation marks. It must be followed by << followed by the format string. In our example, "Hello World!" is the format string
Explanation:
Mark me as a brainliest plz
Similar questions