main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / nirmala
11,15
| Is This Answer Correct ? | 3 Yes | 19 No |
Post New Answer View All Answers
what are the different storage classes in c?
Is it possible to pass an entire structure to functions?
How can you determine the maximum value that a numeric variable can hold?
How can I ensure that integer arithmetic doesnt overflow?
What is a shell structure examples?
What are run-time errors?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Write a program to check whether a number is prime or not using c?
Is struct oop?
Can the “if” function be used in comparing strings?
What do you mean by Recursion Function?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Is c procedural or object oriented?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above