Answer Posted / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
char n;
printf("enter the character:");
scanf("%c",&n);
printf("the ascii value %c is %d",n,n);
getch();
}
| Is This Answer Correct ? | 53 Yes | 16 No |
Post New Answer View All Answers
What does s c mean on snapchat?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
write a proram to reverse the string using switch case?
What is the most efficient way to store flag values?
Is null equal to 0 in sql?
In C language what is a 'dangling pointer'?
What is array in C
c language interview questions & answer
What is indirection? How many levels of pointers can you have?
Explain data types & how many data types supported by c?
What is the newline escape sequence?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What do you mean by a local block?
Can the sizeof operator be used to tell the size of an array passed to a function?