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

what is the output?

Answer Posted / vignesh1988i

x=57
y=95

Is This Answer Correct ?    9 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1298


Explain the process of converting a Tree into a Binary Tree.

2084


How is actual parameter different from the formal parameter?

579


what are the advantages of a macro over a function?

631


What is a c token and types of c tokens?

575






hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .

1890


What is register variable in c language?

590


Why is c not oop?

527


how we can make 3d venturing graphics on outer interface

3980


What does the characters “r” and “w” mean when writing programs that will make use of files?

839


What is difference between union All statement and Union?

616


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7377


What are the different types of linkage exist in c?

597


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

613


which is an algorithm for sorting in a growing Lexicographic order

1381