main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answers were Sorted based on User's Feedback
Answer / sujith vargheese
Hi The correct Answer is X=55 AND y=94
| Is This Answer Correct ? | 1 Yes | 3 No |
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
What is Your Name :)
What is an example of enumeration?
Explain what is a stream?
What does the function toupper() do?
What is advantage of pointer in c?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
where can function pointers be used?
write a program without using main function?