main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / sathya.r
Ans: 10,16
| Is This Answer Correct ? | 91 Yes | 32 No |
Post New Answer View All Answers
Is multithreading possible in c?
What are extern variables in c?
What do you mean by dynamic memory allocation in c?
What is define c?
What are the types of c language?
What is the use of pointers in C?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Can we declare variable anywhere in c?
What is the difference between constant pointer and constant variable?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
How can you return multiple values from a function?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is a void pointer in c?
Why static is used in c?
Explain what standard functions are available to manipulate strings?