What is the output of this piece of code?cppint8_t a=200;uint8_t b=100;if(a>b) std::cout

🎲 Try a Random Question  |  Total Questions in Quiz: 70  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C++ Quiz — practice the complete quiz, review flashcards, or try a random question.

MCQs For LinkedIn Skill Assessments.


What is the output of this piece of code?<br>cpp<br>int8_t a=200;<br>uint8_t b=100;<br>if(a>b)<br> std::cout<<'greater';<br>else<br> std::cout<<'less';<br>