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
What is the difference between arrays and pointers?
Differentiate between a structure and a union.
What is string constants?
What is structure and union in c?
Explain what does a function declared as pascal do differently?
What are the types of i/o functions?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Where can I get an ansi-compatible lint?
Tell me when would you use a pointer to a function?
Is it possible to initialize a variable at the time it was declared?
What is the use of gets and puts?
How many keywords (reserve words) are in c?
What is c language used for?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is methods in c?