char ch=10;printf("%d",ch);what is the output
Answer Posted / shruti
@Devvvv
every character has an ascii value..
it is not that only 0 - 9 has ascii values.. even 10 , 20
has ascii values.
each and every value has an ascii value..
comming back to the ques:
i think it will give the ascii value of 10...
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Explain how can a program be made to print the name of a source file where an error occurs?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What are # preprocessor operator in c?
Can we compile a program without main() function?
How can I read a binary data file properly?
What is a constant?
How was c created?
What is the use of in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Difference between strcpy() and memcpy() function?
In C language what is a 'dangling pointer'?
What is bin sh c?
What are the features of the c language?
What does int main () mean?
What is the use of gets and puts?