char ch=10;printf("%d",ch);what is the output

Answer Posted / rani

output is

10

Is This Answer Correct ?    10 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how can use subset in c program and give more example

1507


What is wild pointer in c with example?

583


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)

690


If the size of int data type is two bytes, what is the range of signed int data type?

596


what do u mean by Direct access files? then can u explain about Direct Access Files?

1649






#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

723


What are the Advantages of using macro

690


I heard that you have to include stdio.h before calling printf. Why?

594


What is use of integral promotions in c?

670


Why structure is used in c?

601


Write a program to print factorial of given number using recursion?

607


Why we write conio h in c?

574


I have seen function declarations that look like this

608


What are the properties of union in c?

596


Define circular linked list.

577