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
How can I dynamically allocate arrays?
Why c is called procedure oriented language?
What is a good way to implement complex numbers in c?
Which type of language is c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
write a program for the normal snake games find in most of the mobiles.
Do pointers store the address of value or the actual value of a variable?
How can I write a function that takes a format string and a variable number of arguments?
What is structure data type in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain what is the difference between functions abs() and fabs()?
Explain how do you print an address?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is difference between far and near pointers?
What are header files in c programming?