void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / vignesh1988i
the answer is 12..... 5 + 7
| Is This Answer Correct ? | 12 Yes | 8 No |
Post New Answer View All Answers
What is the difference between int main and void main in c?
How is a null pointer different from a dangling pointer?
What is f'n in math?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are the scope of static variables?
What is the difference between malloc() and calloc() function in c language?
Explain what is the difference between text files and binary files?
What is 'bus error'?
What is equivalent to ++i+++j?
Why doesnt this code work?
Do you know null pointer?
What are the advantages of using macro in c language?
How can I manipulate individual bits?
What is the difference between call by value and call by reference in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.