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
How can type-insensitive macros be created?
Can you write a programmer for FACTORIAL using recursion?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How does struct work in c?
Why do we use main function?
Explain the difference between strcpy() and memcpy() function?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program in c to replace any vowel in a string with z?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is #define used for in c?
What is pointer to pointer in c with example?
What is c value paradox explain?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
How do you determine the length of a string value that was stored in a variable?