void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / surendra singh bisht
x=57
y=91
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
How many bytes are occupied by near, far and huge pointers (dos)?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is meant by int main ()?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is the difference between printf and scanf )?
What does sizeof return c?
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
What does emoji p mean?
Is file a keyword in c?
What is a built-in function in C?
In a switch statement, explain what will happen if a break statement is omitted?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain what is the most efficient way to store flag values?
How do I round numbers?