C++ MQCs with Explanation.( CHAPTER 2: BEGINNING WITH C++)

Which of the following statements is invalid in C++??

  1. cin >> count;
  2. cin >> x; >>y;
  3. cin >> x
    >> y;
  4. cin >> x >>y;



Answer: 
Option c : cin >> x
>> y;


Explanation Here

Post a Comment

0 Comments