Skip to main content

C Programming Language क्या है और आसानी से कैसे सीखें..

C Programming Language क्या है ( What is C Programming Language in Hindi)



C एक Middle Level Programming Language है. यह एक Structure Oriented Programming Language है. वैसे तो ये Language, High Level Language जैसी Simple है और Low Level Language के Features को भी Support करती है. इसे Computer के Application Software और System Software बनाने के लिए इस्तेमाल किया जाता है. शुरुवात मे इस Language को Unix Operating System में Programming करने के लिए इस्तेमाल किया गया था.

क्या आपको पता है C Programming Language क्या है (What is C Programming Language in Hindi). और Characteristics of C , History of C के बारे में आज हम हमारे पाठक को बताएँगे वो भी हिंदी में. इस Computer और Mobile के दौर में हर कोई Software से थोड़ा बहुत वाक़िफ़ है. वैसे तो एक Software Programming/coding से बनाया जाता है. एक program में Set of Code होते हैं जिनको Programming Language में लिखा जाता है.
इसमें Program लिखना बड़ा ही आसान है. C को इस्तेमाल कर के Mathematical, Scientific, Business और System Software Develop कर सकते हो. C language की विशेषता(Features) के बारे में आगे इस लेख में बताया गया है जिसके बारे में समझना जरुरी है. अब थोड़ा C के इतिहास के बारे में जान लेते हैं Hindi में.

C का इतिहास (History Of C in Hindi)

पुराने समय मतलब 1970s में हर Language को कुछ Special Purpose के लिए विकसित किया जाता था. जैसे एक लैंग्वेज है FORTRAN जिसको Scientific और Mathematical application बनाने के लिए , इस तरह COBOL (Common Business Oriented Language) को Business में इस्तेमाल होने वाले Software को बनाने के लिए किया जाता था. लेकिन उस वक्त FORTRAN और COBOL से सारे Problems का Solution निकाल पाना मुश्किल था. यही वो समय था जब पहली बार C को बनाने के बारे में किसी ने सोचा, जिनका नाम है Dennis Ritche.
Dennis Ritche ने 1970s के समय में Bell’s Laboratory में इस language का Development शुरु किए. धीरे धीरे 1972 तक Bells Laboratory में इसको पूरी तरह से Develop कर दिया गया. Unix Operating System में Programming करने के लिए बनाया गया था. लेकिन बाद में c की मदद से पूरा UNIX Operating system को फिर से बनाया गया. आज के समय की बात करें तो UNIX पूरी तरह से C Language से ही बना है.C compiler भी c में लिखा गया है.
c Programming Language को B language से निकाली गई है. जिसको KEN Thompson ने बनाया था AT & T Laboratories में. B को Basic Combined Programming Language से Adopt किया गया है जिसको Invent करने वाले का नाम है, Martin Richard Cambridge University से. 1978 में Dannis Ritche और Brian Kernighan ने मिल के “The C Programming Language” को Publish किये थे.
1982 में C Language को मानवीकरण करने के लिए ANSI(American National Standard Institute) द्वारा एक Community बनाई गई थी. 1989 मे c को Standardize (मानवीकरण) किया गया जिसका नाम था “ANSI C”.

Characteristics Of C Language In Hindi

Characteristics मतलब विशेषताए . वैसे ये language पुरानी होने के बावजुद भी बहुत सारे compiler इसी language से develop किये गए हैं. Operating system को programmed करने के लिए इस्तेमाल किया जाता है. तो चलिए इसके Characteristics के बारे में जानते हैं.

  • यह एक Middle Level Language है.
  • इसमें High और Low level Language के features हैं.
  • ये एक General Purpose Programming Language है.
  • इसमें 32 English Words हैं जिनको Keyword बोला जाता है (Keywords:if-else, For, Break).
  • Library Function की वजह से आप इससे बड़े बड़े program आसानी से develop कर सकते हो.
  • Programmer अपने हिसाब से भी Function बना सकता है.
  • c Program एक control Structure Follow करता है, इसी वजह से इसे Structure Programming Language बोला जाता है.
  • Program Structure जैसे Selection (if…else), Repetition (While, For, Do….while) और For Loop.
  • C में लिखे गए सारे प्रोग्राम Portable हैं.
  • ये एक System Independent Language है, मतलब जो Program C में लिखे गए हैं वो सारे Computers में Run कर सकते हैं.
  • ये language simple और easy है क्योंकि programmer को बड़ी आसानी से English में समझ आ जाता है.
  • C Program का Structure (Structure of C Program)
  • हर C program में बहुत सारे Functions होते हैं, हर एक Function में बहुत सारे Statements होते हैं. function कुछ specific task perform करता है. नीचे c program का General Structure दिया गया है.

C Program का Structure

//Comments
Preprocessor Directives
Global Variable
Main() Functions
{
Local Variables
Statements
……………….
}
Func1()
{
Local Variables
Statements
…………………………
……………………….
}

NEXT....PAGE..

PROGRAMER BABU.....akash gond....


Comments

Popular posts from this blog

short key of c programming

short key of c programming Shortcut Keys(Hot Keys)     Operation    Alt + F  -            Open file Alt + F3 -           Close Alt + F + N  -    New file Alt + X  -           Exit turbo c Alt + F5 -          Output Screen Alt + F + L  -    Check programme load or not. Alt + ENTER  - Full screen Shift + Del -       Cut Shift + Insert -   Paste Ctr + Insert -    Copy Alt+F9 -           Compile a program Ctr + F8           Bbreak point Ctrl+F9 -          To run a program Ctrl+s -...

C LANGUAGE - OVERVIEW C - VARIABLES

C LANGUAGE - OVERVIEW Advertisements C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972. In 1978, Brian Kernighan and Dennis Ritchie produced the first publicly available description of C, now known as the K&R standard. The UNIX operating system, the C compiler, and essentially all UNIX application programs have been written in C. C has now become a widely used professional language for various reasons − Easy to learn Structured language It produces efficient programs It can handle low-level activities It can be compiled on a variety of computer platforms Facts about C C was invented to write an operating system called UNIX. C is a successor of B language which was introduced around the early 1970s. The language was formalized in 1988 by the American National Standard Institute  A N S I A N S ...

environment

It looks like you meant "environment." The environment refers to the surroundings or conditions in which a person, animal, or plant lives or operates. It encompasses various elements, including natural resources, ecosystems, climate, and human-made structures. Protecting and preserving the environment is crucial for the well-being of all living organisms on Earth. Is there anything specific you'd like to discuss or learn about regarding the environment?