ASCII value

Computer Science Level pending

What is ascii value of t in c language?


The answer is 116.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Daniel Lim
Aug 2, 2014

Actually ASCII value of each character is the same no matter which language it is in.

And you can find the list here

Pushpak Hurpade
Sep 9, 2014

int main()

{

char c;


printf("Enter a character: ");


scanf("%c",&c);        /* Takes a character from user */
printf("ASCII value of %c = %d",c,c);
return 0;

}

if you have linux or mac, then man ascii can come in handy.

Test Tester - 6 years, 1 month ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...