rohidas

Hi I am Rohidas lande.I have teaching in C.D.jain college of commerce Shrirampur .I have Nine year in teaching Experience to teach various programming langauge,script languages,databases like Java,C,C++,php,python,html,css,javascript,mysql,oracle.

ASCII Value of the Character

 BACK

     Question:-Write C Program to Print ASCII Value of the Character.

       Answer:-

                 

       #include<stdio.h>

       void main()

      {

          char a;

           int b;

          printf("Enter The Character ");

         scanf("%c",&a);

           b=a;

       printf("\nOutput Is =%d ",b);

         }


        

Post a Comment

0 Comments