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 |
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the symbol indicated the c-preprocessor?
What is the purpose of the fflush() function in C?
what is the difference between i++ and ++i?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What is the most efficient way to store flag values?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
what is the syallabus of computer science students in group- 1?
What are identifiers c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
How can I rethow can I return a sequence of random numbers which dont repeat at all?