Please tell the value of a, when a= K
This is of Java.....
Please do it using ASCII value....
Don't spam......
please
Answers
Answer:
The k in Coulomb's law is the most important term in the equation. Yes it is the proportionality constant; and, yes the cgs unit system sets it ...
12 वोट
Explanation:
bhai brothe bro app jo bhi ho
google par doond lo
Answer:
Input : a Output : 97 Input : D Output : 68
Here are few methods in different programming languages to print ASCII value of a given character :
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.
# Python program to print
# ASCII Value of Character
# In c we can assign different
# characters of which we want ASCII value
c = 'g'
# print the ASCII value of assigned character in c
print("The ASCII value of '" + c + "' is", ord(c))
Output:
The ASCII value of g is 103
Explanation:
hope it's help u