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

what is the output?

Answer Posted / mastan vali.shaik

55 59

Is This Answer Correct ?    3 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is struct node in c?

606


How do you override a defined macro?

688


What is table lookup in c?

616


What are the different types of constants?

631


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2193






In C programming, how do you insert quote characters (‘ and “) into the output screen?

875


Define macros.

769


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

1635


What are the advantages of using new operator as compared to the function malloc ()?

742


Explain what are the standard predefined macros?

642


Is c is a low level language?

553


What is a #include preprocessor?

600


What is static volatile in c?

562


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

925


Write a program to reverse a given number in c?

585