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
What is function what are the types of function?
How can I get the current date or time of day in a c program?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Explain what is the advantage of a random access file?
formula to convert 2500mmh2o into m3/hr
what does static variable mean?
What are the different types of objects used in c?
write an algorithm to display a square matrix.
Explain how can a program be made to print the name of a source file where an error occurs?
What are the features of the c language?
How to write c functions that modify head pointer of a linked list?
How will you find a duplicate number in a array without negating the nos ?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Why do we use namespace feature?
What does *p++ do?