What is the output of the following program segment? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

What is the output of the following program segment?

(A program segment means part of a program.) int s = 100; cout << s; cout << “s” ;

19th Oct 2017, 2:40 AM
itsTommee
itsTommee - avatar
1 Answer
+ 6
Its output is: 100s This is because when you written s, whose assigned value is 100, the output is its value is 100. But when you write "s" it is considered as just a string written by programmer to display as it is to the user.
19th Oct 2017, 2:50 AM
Lakshay
Lakshay - avatar