main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

what is the output?

Answer Posted / mahendra gupta

x=57
y=94

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is use of integral promotions in c?

666


What is the difference between malloc() and calloc()?

617


what is the height of tree if leaf node is at level 3. please explain

1602


What does s c mean on snapchat?

588


4. main() { int c=- -2; printf("c=%d",c); }

1370






Why c is a mother language?

554


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

585


Why is c not oop?

539


What are the types of i/o functions?

683


Explain the use of 'auto' keyword

679


What is the difference between the = symbol and == symbol?

629


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1856


How can I change the size of the dynamically allocated array?

632


What are the 4 data types?

602


Explain what is the stack?

636