main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / pooja
55 59
| Is This Answer Correct ? | 5 Yes | 26 No |
Post New Answer View All Answers
What are header files in c programming?
Write a program to find factorial of a number using recursive function.
Is int a keyword in c?
Compare interpreters and compilers.
What is the -> in c?
Explain how can I read and write comma-delimited text?
Distinguish between actual and formal arguments.
Is array a primitive data type in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are the types of type specifiers?
What is const keyword in c?
What is the difference between array and pointer in c?
How do you list files in a directory?
How can I get back to the interactive keyboard if stdin is redirected?
What is memcpy() function?