main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Post New Answer View All Answers
What is the return type of sizeof?
What is the maximum length of an identifier?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is a pointer in c plus plus?
What is a pointer variable in c language?
Explain what is a pragma?
List the different types of c tokens?
please explain every phase in the "SDLC" in the dotnet.
How do you initialize pointer variables?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is the c value paradox and how is it explained?
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
What are the 4 types of programming language?
Why is #define used?
Explain how can a program be made to print the name of a source file where an error occurs?