Posts

Showing posts with the label C Programming Tutorial Hindi English

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 कर सकते हैं। ...

History and Evolution of C Language सी लैंग्वेज का इतिहास एवं विकास

Introduction of C Language सी लैंग्वेज का परिचय C language is one of the most influential and powerful programming languages in the history of computer science. It was developed by Dennis Ritchie in 1972 at Bell Labs. The language was mainly designed for developing the UNIX operating system and low-level system software. Over time, C became the foundation for many modern programming languages such as C++, Java, C#, Objective-C, and even parts of Python and JavaScript compilers. सी लैंग्वेज कंप्यूटर विज्ञान के इतिहास की सबसे प्रभावशाली और शक्तिशाली प्रोग्रामिंग लैंग्वेज में से एक है। इसका विकास Dennis Ritchie द्वारा 1972 में Bell Labs में किया गया था। इस लैंग्वेज का निर्माण मुख्य रूप से UNIX ऑपरेटिंग सिस्टम और सिस्टम सॉफ्टवेयर विकसित करने के लिए किया गया था। समय के साथ C लैंग्वेज आधुनिक भाषाओं जैसे C++, Java, C#, Objective-C तथा Python और JavaScript के कुछ भागों की आधारशिला बन गई। Evolution of C Language सी लैंग्वेज का विकास Before the invention of C language, programmers mainly used as...