char ch=10;printf("%d",ch);what is the output
Answers were Sorted based on User's Feedback
Answer / 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 | 8 No |
Answer / 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 | 9 No |
Answer / kalpana.y
There will be no output
because, in printf statement it is declared in %d
%d is integer variable
%s should be declared
| Is This Answer Correct ? | 0 Yes | 10 No |
Answer / 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 |
What does the message "automatic aggregate intialization is an ansi feature" mean?
How many types of arrays are there in c?
Can stdout be forced to print somewhere other than the screen?
what is use of loop?
Can a program have multiple main() functions?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
What is #include called?
What are the types of data types and explain?
What is ## preprocessor operator in c?
What is diffrance between declaration and defination of a variable or function
Explain the priority queues?