char ch=10;printf("%d",ch);what is the output
Answer Posted / marc
58
Ascii of '0' is 48
thus, ascii of '10' is 48+10=58
| Is This Answer Correct ? | 6 Yes | 14 No |
Post New Answer View All Answers
What is the explanation for the dangling pointer in c?
What does it mean when the linker says that _end is undefined?
Explain do array subscripts always start with zero?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What do you understand by friend-functions? How are they used?
What are the back slash character constants or escape sequence charactersavailable in c?
Is there sort function in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
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.
What language is lisp written in?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What are the features of c languages?
Why c is known as a mother language?
What is register variable in c language?