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
How was c created?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is wild pointer in c?
How will you delete a node in DLL?
What is hashing in c?
What do you know about the use of bit field?
What do mean by network ?
What does %c mean in c?
Tell us bitwise shift operators?
I have a varargs function which accepts a float parameter?
What is bubble sort in c?
What is the basic structure of c?
Why c is a procedural language?
Can you think of a logic behind the game minesweeper.
What is FIFO?