main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / madhu
hey how come 15 ....
ans is 11,16
| Is This Answer Correct ? | 5 Yes | 7 No |
Post New Answer View All Answers
What is a pointer value and address in c?
What are the preprocessor categories?
What's the difference between constant char *p and char * constant p?
Why is sizeof () an operator and not a function?
What are the 5 types of inheritance in c ++?
Where static variables are stored in memory in c?
what are the 10 different models of writing an addition program in C language?
What is wrong in this statement? scanf(ā%dā,whatnumber);
Is main a keyword in c?
What is the method to save data in stack data structure type?
What is dynamic memory allocation?
Do you know the use of fflush() function?
What is a ternary operator in c?
What library is sizeof in c?
Write a program to print fibonacci series without using recursion?