main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / sheikh rasel
11
15
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
What is the purpose of sprintf() function?
What is the translation phases used in c language?
What is indirection?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
write a c program to find the sum of five entered numbers using an array named number
Explain what is a static function?
Calculate 1*2*3*____*n using recursive function??
What is abstract data structure in c?
Write a progarm to find the length of string using switch case?
Is javascript written in c?
What is the right type to use for boolean values in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are header files and what are its uses in C programming?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Differentiate Source Codes from Object Codes