What is a unary operator?
Answers were Sorted based on User's Feedback
Answer / ajay yadav
Unary operators are those...which operate on only one
operand.
For eg. a++(only one operand is present) as we are
incrementing the value for a.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ayesha
!
Logical NOT
&
Address-of
~
One's complement
*
Pointer dereference
+
Unary plus
++
Increment
–
Unary negation
––
Decrement
conversion operators
conversion operators
Of the operators shown in preceding table, the postfix
increment and decrement operators (++ and ––) are treated
separately in Increment and Decrement.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sujatha
unary operator is an type of operator which have only one
operand.
ex : 1)unary plus or minus (to change the sign of variable)
2)increment or decrement ( increase or decrease the
value of variable)
unary plus or minus :
ex :
#inclucde<iostream.h>
void main()
{
int a=-10;
cout<<"a="<<(-a);
int b=20;
cout<<"b="<<++b;
}
out put :
a=10
b=21
| Is This Answer Correct ? | 2 Yes | 0 No |
How do you answer polymorphism?
What is abstraction in oops?
Why static Function is used in C++?
What is coupling in oops?
Why multiple inheritance is not possible?
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
What is sub classing in c++?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
What is difference between abstraction and encapsulation?
diff between Abstract class Interfaces?
Should you protect the global data in threads? Why or why not?
What is the real time example of inheritance?