char ch=10;printf("%d",ch);what is the output
Answer Posted / jj
answer is 49,a character constant can be one character
so ch=10----> here 1 is taken as character,in print
statement it is conv to ascii
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What are called c variables?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What does c value mean?
What is the full form of getch?
List some of the dynamic data structures in C?
What are the Advantages of using macro
Which is an example of a structural homology?
What is void main ()?
Explain Basic concepts of C language?
Can we assign integer value to char in c?
What is the difference between mpi and openmp?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is wrong with this initialization?
Explain that why C is procedural?