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


Please Help Members By Posting Answers For Below Questions

What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

801


Explain the Difference between the New and Malloc keyword.

780


Why does not c have an exponentiation operator?

705


What is difference between Structure and Unions?

742


Explain the process of converting a Tree into a Binary Tree.

2234






What is the sizeof () operator?

700


What does #pragma once mean?

783


In C programming, how do you insert quote characters (‘ and “) into the output screen?

1070


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2699


Explain how do you convert strings to numbers in c?

693


Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result

1554


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2433


What is the use of printf() and scanf() functions?

721


all c language question

1994


How do we make a global variable accessible across files? Explain the extern keyword?

1514