why output will not be shown in c language if we use << instead of <? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

why output will not be shown in c language if we use << instead of <?

why output will not be shown in c language if we use << instead of <? I was reading a book and there it was written but without any explanation..

13th Nov 2019, 4:42 PM
md0
md0 - avatar
1 Answer
+ 4
In c, output is given by "printf()" In c++, output is given by "cout << " As c++ is an advanced version of c (with oops) so you can use printf in c++ too by including cstdio library "<<" is also a bitwise operator. whereas "<" is a binary operator (comparison).
13th Nov 2019, 5:25 PM
Saurabh Tiwari
Saurabh Tiwari - avatar