main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / rasel
11 15
| Is This Answer Correct ? | 0 Yes | 16 No |
Post New Answer View All Answers
How reliable are floating-point comparisons?
What is difference between main and void main?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Is c still relevant?
Why is event driven programming or procedural programming, better within specific scenario?
What are the advantages of using linked list for tree construction?
Implement bit Array in C.
Can you assign a different address to an array tag?
Why is python slower than c?
How can I pad a string to a known length?
Which are low level languages?
How do you determine whether to use a stream function or a low-level function?
What are terms in math?
Explain what is a const pointer?
how should functions be apportioned among source files?