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
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is pointers in c with example?
What is the use of f in c?
How to write a code for reverse of string without using string functions?
write a program to display all prime numbers
Explain what is the difference between a string and an array?
Why is event driven programming or procedural programming, better within specific scenario?
praagnovation
Is it possible to initialize a variable at the time it was declared?
Why is c faster?
Who is the founder of c language?
Explain how can I remove the trailing spaces from a string?
Are pointers integers in c?
What is string constants?
Explain how does flowchart help in writing a program?