what is the value of b
if a=5;
b=++a + ++a
Answer Posted / kumkum
13
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are reserved words?
What is variable initialization and why is it important?
Where static variables are stored in c?
Is array a primitive data type in c?
What is ctrl c called?
Which is better between malloc and calloc?
What are header files and explain what are its uses in c programming?
What are qualifiers in c?
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.
Does sprintf put null character?
Differentiate between the expression “++a” and “a++”?
How can I implement sets or arrays of bits?
Explain what are the standard predefined macros?
In a switch statement, explain what will happen if a break statement is omitted?
How can a program be made to print the name of a source file where an error occurs?