char ch=10;printf("%d",ch);what is the output
Answer Posted / rahul shrivastava
surely ans will be 10.
bcz we are using %d access specifire..if we will use %c then
correnponding symbol of asciii valut 10 will be display(but
is becoms invisible)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the use of bit field?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Is c weakly typed?
What is array in c with example?
C program to find all possible outcomes of a dice?
What is a null pointer in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Are negative numbers true in c?
Does c have function or method?
What is the purpose of & in scanf?
What are the various types of control structures in programming?
what type of questions arrive in interview over c programming?
What is the use of ?
When should structures be passed by values or by references?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.