void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / prasanna
57 61
| Is This Answer Correct ? | 9 Yes | 12 No |
Post New Answer View All Answers
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Is main a keyword in c?
What is hungarian notation? Is it worthwhile?
What is structure in c language?
What is non linear data structure in c?
What are enumerated types?
What do you mean by a local block?
What is the use of static variable in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
When should you not use a type cast?
Is stack a keyword in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What does nil mean in c?
i have a written test for microland please give me test pattern
What is storage class?