Please list all the unary and binary operators in C.
Answers were Sorted based on User's Feedback
Answer / kuldeep singh
unary operatos are increment(++),decrement(--),minus(-)
,ampersand(&)negation(!),sizeof(),pointer referance
(*),one's complement(~).......
and binary operatos are +,*,%,/,<,>,=,AND(&&),OR
(||),assigment operator(==),inequility(>=,<=)
| Is This Answer Correct ? | 32 Yes | 3 No |
Can a variable be both constant and volatile?
why we need function pointers?
convert 12345 to 54321 withoutusing strig
Explain what is the difference between text files and binary files?
What does the characters “r” and “w” mean when writing programs that will make use of files?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
Why isnt there a numbered, multi-level break statement to break out
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
What is the significance of c program algorithms?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays