main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / mannucse
35 39
| Is This Answer Correct ? | 6 Yes | 48 No |
Post New Answer View All Answers
What are the __date__ and __time__ preprocessor commands?
What are qualifiers and modifiers c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Is c easy to learn?
What is #include called?
Describe the difference between = and == symbols in c programming?
What are directives in c?
Write a program with dynamically allocation of variable.
Explain what is wrong with this statement? Myname = ?robin?;
Should a function contain a return statement if it does not return a value?
Can a local variable be volatile in c?
With the help of using classes, write a program to add two numbers.
Can i use “int” data type to store the value 32768? Why?
What is the difference between declaring a variable and defining a variable?
What are the different types of control structures in programming?