Computer Science, asked by memeduniya87, 7 months ago

Write a program to accept a name. Then display the ASCII value of each character present in that name. [Write Variable Description and Comments]

Answers

Answered by anshikatyagi28
1

Answer:

Input : a

Output : 97

Input : D

Output : 68

Explanation:

Python code using ord function :

ord() : It coverts the given string of length one, return an integer representing the unicode code point of the character. For example, ord(‘a’) returns the integer 97.

Answered by SugaryHeart
0

Answer:

Python code using ord function :

ord() : It converts the given string of length one, return an integer representing the unicode code point of the character. For example, ord(‘a’) returns the integer 97.

C code: We use format specifier here to give numeric value of character. Here %d is used to convert character to its ASCII value.

C++ code: Here int() is used to convert character to its ASCII value.

Java code : Here, to find the ASCII value of c, we just assign c to an int variable ascii. Internally, Java converts the character value to an ASCII value.

C# code : Here, to find the ASCII value of c, we just assign c to an int variable ascii. Internally, C# converts the character value to an ASCII value.

Hope it helps you !!!!

Pls mark as brainlist and follow me pls pls

Similar questions