which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
Answers were Sorted based on User's Feedback
Answer / cynthia,1st b.sc.,itm
option d)%
as ++ is unary operator with highest precedence,
= is assingnment operator with the next level of precedence
and + is an arithemetic operator with the next level of
prececende.
| Is This Answer Correct ? | 1 Yes | 5 No |
What is a double c?
Explain what is wrong with this statement? Myname = ?robin?;
Can an array be an Ivalue?
how to TOGGLE Nth bit of variable in a MACRO
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Can i use Two or More Main Funtion in any C program.?
What is difference between class and structure?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Table of Sudoku n*n
nic scientist exam
what is the importance of spanning tree?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }