main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / chandrasekhar
56 93
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What are the different types of errors?
What are c header files?
Explain the use of function toupper() with and example code?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
write a program to find out prime number using sieve case?
what is the syallabus of computer science students in group- 1?
What are the standard predefined macros?
What is the use of ?
Why do some versions of toupper act strangely if given an upper-case letter?
Write a program to show the change in position of a cursor using c
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
How to create struct variables?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is meant by int main ()?
What is equivalent to ++i+++j?