main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / krzysztof
People... is itt really so hard to compile that and check? Correct answer, compiled with gcc:
56 93
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How can I recover the file name given an open stream?
Is linux written in c?
using only #include
What is the maximum no. of arguments that can be given in a command line in C.?
What header files do I need in order to define the standard library functions I use?
What is NULL pointer?
What is an auto keyword in c?
What are runtime error?
What is the purpose of sprintf?
What is a example of a variable?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Do character constants represent numerical values?
Explain continue keyword in c
What is a null pointer in c?