Answer Posted / thiyanesh
#include<stdio.h>
void main()
{
char num ;
printf("enter the number: ");
scanf("%c",&num);
printf("the ascii value of %c is %d",num,num);
return 0;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Explain goto?
Write a program in c to replace any vowel in a string with z?
What is multidimensional arrays
What are the application of void data type in c?
What is const volatile variable in c?
Explain what does a function declared as pascal do differently?
What kind of structure is a house?
What is the purpose of macro in C language?
When do we get logical errors?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is strcmp in c?
write a progrmm in c language take user interface generate table using for loop?
Why can't I perform arithmetic on a void* pointer?