main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / lucky
correct answer is 57 94
| Is This Answer Correct ? | 16 Yes | 13 No |
Post New Answer View All Answers
What are the difference between a free-standing and a hosted environment?
Differentiate between the = symbol and == symbol?
What is the difference between printf and scanf )?
What are global variables and explain how do you declare them?
What is default value of global variable in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What does return 1 means in c?
How do you override a defined macro?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is the purpose of scanf() and printf() functions?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Is it possible to initialize a variable at the time it was declared?
write a program to rearrange the array such way that all even elements should come first and next come odd
Can we assign integer value to char in c?
Does c have an equivalent to pascals with statement?