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
What's a good way to check for "close enough" floating-point equality?
How to Throw some light on the splay trees?
Explain the difference between malloc() and calloc() in c?
What is a method in c?
Which built-in library function can be used to match a patter from the string?
What is #include stdlib h?
How do you define structure?
Write a C program to count the number of email on text
What are the differences between new and malloc in C?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Why does everyone say not to use scanf? What should I use instead?
What is a wrapper function in c?
What are header files and explain what are its uses in c programming?
What are the 5 organizational structures?
Explain argument and its types.