Which one of the given code snippet represents the correct way to print the following output?
HI
"HELLO"
#include using namespace std; int main() { cout << "HI" << endl << "\"HELLO\"" << endl; return 0; }
#include using namespace std; int main() { cout << HI << endl << "HELLO" << endl; return 0; }
{"name":"Which one of the given code snippet represents the correct way to print the following output? HI \"HELLO\"", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Which one of the given code snippet represents the correct way to print the following output? HI \"HELLO\"","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Powered by: Quiz Maker