What is the output of this piece of code?cppint8_t a=200;uint8_t b=100;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>std::cout<<'a='<<(int)a;<br>std::cout<<', b='<<(int)b;<br>