char ch=10;printf("%d",ch);what is the output
Answer Posted / devvv
this program is gonna give output 10.coz ascii values are
assigned to only 0....9.when we execute printf("%
c",ch);.........the output screen will be blank.
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
why wipro wase
What is the argument of a function in c?
Explain what does it mean when a pointer is used in an if statement?
if p is a string contained in a string?
Why isnt there a numbered, multi-level break statement to break out
Difference between goto, long jmp() and setjmp()?
What is a static function 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.
What is context in c?
What are structural members?
What is the basic structure of c?
Why c is a mother language?
Explain what is the benefit of using #define to declare a constant?
What is the scope of an external variable in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?