main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / deepak
57 94
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Why isn't any of this standardized in c? Any real program has to do some of these things.
explain what is an endless loop?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is line in c preprocessor?
Explain how can I remove the trailing spaces from a string?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Write a program to swap two numbers without using a temporary variable?
What should malloc() do?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Why we use void main in c?
What is the difference between mpi and openmp?
What does & mean in scanf?
Combinations of fibanocci prime series
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is meant by realloc()?