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
What is function pointer c?
Is null valid for pointers to functions?
What is structure pointer in c?
What was noalias and what ever happened to it?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why can arithmetic operations not be performed on void pointers?
What are the uses of null pointers?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Is flag a keyword in c?
What are the 5 types of organizational structures?
How can I recover the file name given an open stream or file descriptor?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Tell us the use of fflush() function in c language?
What is the difference between printf and scanf in c?