C Program to Find ASCII Value of a Character with Output किसी अक्षर की ASCII Value ज्ञात करने हेतु सी प्रोग्राम
ASCII stands for American Standard Code for Information Interchange. It is a standard character encoding system used in computers to represent characters, numbers, and symbols using numeric values. ASCII का पूर्ण रूप American Standard Code for Information Interchange है। यह एक standard character encoding system है जिसका उपयोग computers में characters, numbers तथा symbols को numeric values के रूप में दर्शाने के लिए किया जाता है। Every character in the keyboard has a unique ASCII value. For example: Keyboard के प्रत्येक character की एक unique ASCII value होती है। उदाहरण: A = 65, B = 66, ..., Z = 90 a = 97, b = 98, ..., z = 122 0 = 48, 1 =49, ..., 9=57 In C language, characters are internally stored as integer ASCII values, therefore we can easily print the ASCII value of a character using format specifiers. C language में characters internally integer ASCII values के रूप में store होते हैं, इसलिए हम format specifiers की सहायता से किसी character का ASCII value आसानी से print कर सकते हैं। ...