cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
What is >> symbol in C++ ?
What is >> symbol in C++ ?
Feb 17, 2013 at 10:17am UTC
shivaji
(3)
I really dont know what is >> symbol used for during " cout " operation? please some body tell me about this >> symbol?
Feb 17, 2013 at 10:26am UTC
Chervil
(7320)
This should get you started:
http://www.cplusplus.com/doc/tutorial/basic_io/
The extraction operator
>>
is used for input, e.g. cin
and the insertion operator
<<
for output, e.g. cout
Feb 17, 2013 at 10:53am UTC
syedfahadjalali
(40)
>> and << also use in bit shifting
Feb 17, 2013 at 1:15pm UTC
shivaji
(3)
thnak you to all for supporting me.
Topic archived. No new replies allowed.