answersLogoWhite

0

What is the ascii value for c?

Updated: 12/7/2022
User Avatar

Wiki User

13y ago

Best Answer

The ASCII value for "C" is 67, for "c", 99.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the ascii value for c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you convert a character into its ascii value?

In C a character already is its ASCII value: char c= 'A'; printf ("%c is %d (0x%x hexa)\n", c, c, c);


Does tab have any value in c?

Tab has a code in ASCII (9), and it has a backslash-sequence in C: \t


What is ASCII value of 5?

Ascii value of 5 is 53.


What is ASCII value of 0?

The ascii value of zero - is 48.


How to print a symbol in Java using the ASCII value?

In order to print a character using its ASCII value, you need to first assign it to a char value like this: char c = (char) 65; In this example, we are casting the int 65 to a char, which converts it to an 'A', since 65 is the ASCII value for the capital letter 'a'. Next, you can print it out if you want: System.out.println(c); That's pretty much all there is to it!


What is a C program that will accept any alphanumeric character and display its ascii value?

#include#includevoid main(){char ch;clrscr();printf("enter to know ascii value");scanf("%c",&ch);printf("%d",ch);getch();}


What is the ASCII value of 92?

\ is the character for 92 in ASCII.


Write a C program to accept a string from user and display its ascii value and then display sum of all ascii value of strings?

//C program to accept a string from user and //display its ascii value and //then display sum of all ascii value of strings #include<stdio.h> #include <string.h> int main() { char String[100]; int Sum,Index; Sum=0; //Sum is initially zero printf("Enter the string:\n"); gets(String); //Accept String from User for(Index=0;Index<strlen(String);Index++) { Sum+=(String[Index]); //Adds (the ASCII values of) the String characters. } printf("The sum is %d\n",Sum); //Printing it as %d gives the equivalent ASCII value. return 0; }


What is the ASCII value of a?

deepak


What is the decimal value of the ASCII letter K?

The ASCII value of capital K is 75. For a small k it is 107.


Ascii value of 255?

ASCII standardizes characters between 0 and 127.


What is ascii value of smily face?

There is no ASCII value of :-) ASCII encodes only single characters, assigning a numerical 0-127 value to each character. However, if you want the ASCII encoding of a smiley, here's some samples (using Hex values): :-) 0x3A2D29 :) 0x3A29