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
Which programming language is best for getting job 2020?
Why do we use stdio h and conio h?
What does int main () mean?
What is the function of volatile in c language?
What are control structures? What are the different types?
What is the difference between formatted&unformatted i/o functions?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is a program?
How can I read data from data files with particular formats?
What are the types of unary operators?
What is the need of structure in c?
Is it cc or c in a letter?
how to write a c program to print list of fruits in alpabetical order?
What is the difference between scanf and fscanf?
Why cant I open a file by its explicit path?