.OnlineGuruji

.OnlineGuruji

Provides E-Notes,Video Tutorials And Download Links For Students In hindi

*********************************************************

*********************************************************
********************************************************************************

Breaking

Ramchandicollege Saraipali

Technology Jobs

OnlineGuru Blog मे आपका स्वागत है ब्लॉग से संबन्धित जानकारी के लिए संपर्क करें मो ॰ नम ।-9826026747(सपन कुमार दास) अपने विषय से संबन्धित अपडेट प्राप्त करने के लिए ब्लॉग पे दिये गए Bell Icon को press करें कम्प्युटर,Science,English Grammer से संबन्धित विषय की अधिक जानकारी के लिए हमारे ब्लॉग अथवा यू ट्यूब चैनल को सब्क्राइब करे ..

Monday, January 11, 2021

January 11, 2021

C Character Set :----By Sapan Das



C Character Set :

जैसा की हम जानते है की प्रत्येक language मे words और statements को लिखने के लिए विभिन्न characters के समूहो का उपयोग होता है जिसके अंतर्गत alphabet ,digit और विशेष प्रकार के symbol का उपयोग होता है  उसी प्रकार C भाषा के भी कैरक्टर सेट होते है जो कुल 256 कैरक्टर का समर्थन करती है।

हर c प्रोग्राम मे स्ततेमेंट्स होते है इन स्ततेमेंट्स का निर्माण words के प्रयोग से किया जाता है और इन words का निर्माण c character सेट का उपयोग करके किया जाता है

c language मे निम्न character सेट होते है :------

  1. Alphabets
  2. Digits
  3. Special Symbols
  4. White Space Character 

Alphabets

c language इंग्लिश language के upper case और lower case के 52 alphabet को सपोर्ट करती है 

C language supports all the alphabets from the English language. Lower and upper case letters together support 52 alphabets.

lower case letters - a to z

UPPER CASE LETTERS - A to Z

Digits


C language supports 10 digits which are used to construct numerical values in C language.

Digits - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Special Symbols

C language supports a rich set of special symbols that include symbols to perform mathematical operations, to check conditions and  other special symbols.

सी लैड्ग्वेज special symbol के समूह को support करती है जिसका उपयोग mathematical operations, to check conditions,backspaces आदि के लिए किया जाता है 

Special Symbols - ~ @ # $ % ^ & * ( ) _ - + = { } [ ] ; : ' " / ? . > , < \ | tab newline space NULL bell backspace verticaltab etc.,

Whitespace character 

इस character set के अंतर्गत blank space,v-tab h-tab form feed and new line character आते है


Monday, November 30, 2020

November 30, 2020

Introduction Of 'C' Language :---- By Sapan Das


 





Introduction:-

C एक प्रोग्राममिंग लैड्ग्वेज है | जो USA की AT & T Bell Laboratry मे 1972 मे develope किया गया था | इसे डिज़ाइन करने वाले और लिखने वाले व्यक्ति का नाम Denis Ritchi है | C लैड्ग्वेज ने अपने पावर को एक all purpose प्रोग्राममिंग लैड्ग्वेज के रूप मे प्रोजेक्ट किया है इस language मे कई सॉफ्टवेर लिखे गए है |इस lang की सहायता से unix operating को लिखा गया है| इस lang का उपयोग most common platform के रूप मे system प्रोग्राम develop करने के लिए किया जाता है |

Some Important Topics About C Language :-

1। C को एक हाइ लेवेल प्रोग्राममिंग लैड्ग्वेज की कैटेगरी मे रखा गया है क्यूंकी यह अन्य machine level lang aur low level lang की तुलना मे अच्छी programming efficiency प्रदान करता है |

2। यह एक सिम्पल varshatile more expressive general purpose प्रोग्राममिंग lang है 

3। यह हमे डाटा कन्वर्शन की सुविधा प्रदान करता है 

4। C lang की सहायता से हम किसी variable का dynamic memory allowcation कर सकते है |

5। C एक block structured programming lang है 

6।यह fundamental flow of control construction provide करता है  

C lang के पूर्व programmersd को एक एसे all purpose lang की आवश्यकता थी जो किसी एक specific कार्य को ना कर सभी प्रकार के कार्य को करने मे सक्षम हो | पूर्व मे BPCL,COBOL,FORTRAN जैसे lang थे जो किसी एक specific कम करने मे सक्षम थे इन सभी language के specific features को inherit कर नया language बनाया गया जो बाद मे C language के नाम से जाना गया |

Features of C Language 

1।सी language हमे top to bottom programming approach प्रदान करता है 

2। पूरे प्रोग्रामे मे डाटा function to function move कर सकता है 

3। C के अधिकांश function global डाटा का उपयोग करते है 

4। C lang के बड़े बड़े प्रोग्राम को हम function की सहायता से छोटे छोटे भागों मे devide कर सकते है 

5। C एक procedural और sequential orientede language है |

6। सी एक case sensitive programming language है |

7। C एक portable लैड्ग्वेज है जिसे एक सिस्टम मे डिज़ाइन और दूसरे सिस्टम मे रन किया जा सकता है 



The Programming Structure of C language:--

1.Including header file

2.Global variable and function declaration

3.main function declaration

4. Local variable and function declaration

5.Statement of programe

6. Other function

7. End of programe

Example:--

# include<stdio.h>

#include<conio.h>

int a,b;

void main()

{

clrscr();

int x,y;

printf("i am a studnt of PGDCA");

getch();

}