what is the output of below
int n=10;
(n++)++;
printf("%d",n);
Answer Posted / kirankumaryakkala
ans. error:Lvalue required
why? Lvalue means leftside assignment value,
here, first it goes to increment on N, again it is going to
increment, before going to increment second time, you should
allocate one varibale that holds the first time increment
value, other wise from where to it increment...
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
What is difference between Structure and Unions?
State two uses of pointers in C?
Explain what is a 'locale'?
Not all reserved words are written in lowercase. TRUE or FALSE?
Is this program statement valid? INT = 10.50;
What are linker error?
What is the use of function overloading in C?
What are the application of void data type in c?
What is the difference between text files and binary files?
What is && in c programming?
Is int a keyword in c?
Subtract Two Number Without Using Subtraction Operator
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a program to find the given number is prime or not