void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / mounica
57 91
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are run-time errors?
What does c mean in standard form?
In c programming language, how many parameters can be passed to a function ?
What is a void pointer? When is a void pointer used?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Do you have any idea about the use of "auto" keyword?
Explain 'bus error'?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What are the different categories of functions in c?
What is s or c?
List out few of the applications that make use of Multilinked Structures?
Why do we use pointer to pointer in c?
what is the function of pragma directive in c?
What is null pointer constant?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?