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

what is the output?

Answer Posted / s.srinivasulu

Answer:
x=57
y=94

Is This Answer Correct ?    14 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me when is a void pointer used?

640


What is the purpose of sprintf?

606


What is an identifier?

617


Why structure is used in c?

572


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

1577






What is header file definition?

558


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1856


Write a program to check armstrong number in c?

625


Describe wild pointers in c?

627


Explain the advantages and disadvantages of macros.

612


A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

634


i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical

1829


What is a lookup table in c?

616


What is %lu in c?

671


Why is it important to memset a variable, immediately after allocating memory to it ?

1544