void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / gajendra
1
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a built-in function in C?
What is pragma c?
What’s a signal? Explain what do I use signals for?
How can you access memory located at a certain address?
What is data types?
Why do we use return in c?
what value is returned to operating system after program execution?
When should we use pointers in a c program?
What is the difference between union and structure in c?
What is chain pointer in c?
What is volatile variable in c with example?
What is meant by high-order and low-order bytes?
How can I handle floating-point exceptions gracefully?
write a program to display all prime numbers
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none