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 is extern c used for?
Write programs for String Reversal & Palindrome check
What is abstract data structure in c?
State two uses of pointers in C?
Explain the Difference between the New and Malloc keyword.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is a const pointer?
What is main () in c language?
What tq means in chat?
What does struct node * mean?
How to implement a packet in C
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is the use of linkage in c language?
What are the advantages of c language?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;