diff --git a/ASCIIvaluecharacter b/ASCIIvaluecharacter new file mode 100644 index 00000000000..7fb487ab6db --- /dev/null +++ b/ASCIIvaluecharacter @@ -0,0 +1,4 @@ +# Program to find the ASCII value of the given character + +c = 'p' +print("The ASCII value of '" + c + "' is", ord(c))