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
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain the Difference between the New and Malloc keyword.
Why does not c have an exponentiation operator?
What is difference between Structure and Unions?
Explain the process of converting a Tree into a Binary Tree.
What is the sizeof () operator?
What does #pragma once mean?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Explain how do you convert strings to numbers in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is the use of printf() and scanf() functions?
all c language question
How do we make a global variable accessible across files? Explain the extern keyword?