<<,>> these are left shift and right shift bitwise operators in c++,am i right?
Ans me in yes/no
can we say that these are the bitwise logical operators?yes/no
<<,>> these are left shift and right shift bitwise operators in c++,am i right?
Ans me in yes/no
can we say that these are the bitwise logical operators?yes/no
1. Yes
2. No ( Logical operators are !, &&, ||)
----------------------
suresh
<< This is shift left operator
and >> this shift right operato..
but
In c++ we use as insertion and extraction operator...
cin>> variable;
cout<<display message.
These are the operator named as insertor(<<) and extractor (>>)in c++
insertor is used mainly with cout and extractor is used with cin
so you are totally wrong my friend
<< This is left shift operator
and >> this is right shift operato..