Answer Posted / prasannanjaneyulu.kandimalla
a=5;
a=a++/++a;
in that numerator is 5 and denominator is 6(finally a value
is:6)
so a=6/6=1
finally a is postincremented so it is2(1+1)
| Is This Answer Correct ? | 17 Yes | 4 No |
Post New Answer View All Answers
How are portions of a program disabled in demo versions?
What are file streams?
What is substring in c?
What are the types of functions in c?
What is 1d array in c?
When should a far pointer be used?
What is the purpose of void pointer?
What are types of preprocessor in c?
Should I learn c before c++?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the difference between a function and a method in c?
When should structures be passed by values or by references?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What is c programing language?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }