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
What is the best style for code layout in c?
How do you define a function?
What is %s and %d in c?
What are the benefits of organizational structure?
Explain how can I remove the trailing spaces from a string?
Can a variable be both const and volatile?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the difference between char array and char pointer?
Explain zero based addressing.
What is queue in c?
What does malloc () calloc () realloc () free () do?
code for find determinent of amatrix
What are the preprocessor categories?
When is a “switch” statement preferable over an “if” statement?
Explain what is the best way to comment out a section of code that contains comments?