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
Write a program to print all permutations of a given string.
Are bit fields portable?
using only #include
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
How does #define work?
Where can I get an ansi-compatible lint?
What is the symbol indicated the c-preprocessor?
What is the role of && operator in a program code?
How can I direct output to the printer?
What is page thrashing?
Why does everyone say not to use gets?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What do you mean by invalid pointer arithmetic?
What are data structures in c and how to use them?