char ch=10;printf("%d",ch);what is the output
Answer Posted / shruti
@Devvvv
every character has an ascii value..
it is not that only 0 - 9 has ascii values.. even 10 , 20
has ascii values.
each and every value has an ascii value..
comming back to the ques:
i think it will give the ascii value of 10...
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is the difference between c and python?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How can you tell whether a program was compiled using c versus c++?
Write a program to identify if a given binary tree is balanced or not.
What does the error message "DGROUP exceeds 64K" mean?
what do the 'c' and 'v' in argc and argv stand for?
How many keywords are there in c?
What is difference between far and near pointers?
program for reversing a selected line word by word when multiple lines are given without using strrev
Why header files are used?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is NULL pointer?
Differentiate fundamental data types and derived data types in C.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are types of structure?