main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / rasel
11 15
Is This Answer Correct ? | 0 Yes | 16 No |
Post New Answer View All Answers
How can you tell whether a program was compiled using c versus c++?
List some basic data types in c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
How to declare pointer variables?
What is define directive?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the advantage of an array over individual variables?
#include
Why are algorithms important in c program?
What is echo in c programming?
What is header file definition?
How old is c programming language?
What extern c means?
In which header file is the null macro defined?
Write a program to print numbers from 1 to 100 without using loop in c?