What will be the output of
x++ + ++x?
Answer Posted / mortal
x++ starts with x and ++x starts with x+1,hence if x=1 then
ans. is 3.
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
Can a function argument have default value?
Can you subtract pointers from each other? Why would you?
What is structure in c definition?
How pointers are declared?
Explain a file operation in C with an example.
c language interview questions & answer
What is scope rule in c?
What is a structural principle?
How can a string be converted to a number?
How can I trap or ignore keyboard interrupts like control-c?
Explain can static variables be declared in a header file?
What is c mainly used for?
can anyone suggest some site name..where i can get some good data structure puzzles???
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
The difference between printf and fprintf is ?