main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / neha gupta
according to c standard they are undefined expressions.different compilers interpret answer in different way.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How can a process change an environment variable in its caller?
What is the concatenation operator?
Tell me what is null pointer in c?
What are different types of variables in c?
Explain how can you tell whether a program was compiled using c versus c++?
What is variable in c example?
What is static and auto variables in c?
Difference between goto, long jmp() and setjmp()?
What is wrong in this statement? scanf(“%d”,whatnumber);
Is fortran faster than c?
How many identifiers are there in c?
Write a program to print “hello world” without using semicolon?
Why is c fast?
Tell me with an example the self-referential structure?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array