main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / rohit
57 94
| Is This Answer Correct ? | 33 Yes | 21 No |
Post New Answer View All Answers
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Is c pass by value or reference?
How many types of arrays are there in c?
Which of these functions is safer to use : fgets(), gets()? Why?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Write a program to reverse a given number in c?
What is variable and explain rules to declare variable in c?
Why flag is used in c?
What is size of union in c?
Is it better to use malloc() or calloc()?
c language interview questions & answer
What is echo in c programming?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is the difference between a function and a method in c?
Explain c preprocessor?