char ch=10;printf("%d",ch);what is the output
Answer Posted / rogerthatrambo
although i know the answer:
what should be output of this:
do it without running.
int main()
{
char ch='48';
printf("%d %c",ch,ch);
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain how do you list a file’s date and time?
Explain how do you determine whether to use a stream function or a low-level function?
Can we declare a function inside a function in c?
Do you know the difference between exit() and _exit() function in c?
Explain the array representation of a binary tree in C.
Which one would you prefer - a macro or a function?
What are multibyte characters?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What are the loops in c?
How can I list all of the predefined identifiers?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
to find the closest pair
What is memory leak in c?
How can you determine the maximum value that a numeric variable can hold?
What is dynamic memory allocation?