Program-
एक प्रोग्राम एक कंप्यूटर के लिए निर्देश का एक क्रम है जो प्रत्येक प्रोग्राम को निष्पादित करने के लिए कुछ प्रोग्रामिंग भाषा में लिखा जाता है।
A program is a
sequence of instruction for a computer to execute every program is written in
some programming language.
Programming-
कंप्यूटर प्रोग्रामिंग कंप्यूटर प्रोग्राम के सोर्स कोड की डिजाइनिंग, लेखन, परीक्षण, डिबगिंग और रखरखाव की प्रक्रिया है। सोर्स कोड एक या अधिक प्रोग्रामिंग भाषाओं में लिखा जाता है। प्रोग्रामिंग का उद्देश्य निर्देश का एक सेट बनाना है जिसका उपयोग कंप्यूटर विशिष्ट संचालन करने या वांछित व्यवहार प्रदर्शित करने के लिए करता है।
Computer
programming is the process of designing, writing, testing, debugging and
maintaining the source code of computer programs. The Source code is written in
one or more programming languages. The purpose of programming is to create a
set of instruction that computer used to perform specific operations or to
exhibit desired behavior.
सी . का परिचय (Introduction to C)
सी Procedure Oriented प्रोग्रामिंग भाषा है जिसे 1972 में डेनिस रिची द्वारा AT & T Bell प्रयोगशाला में लिनक्स ओएस के लिए विकसित किया गया था।
C is Procedure oriented programming language developed by Dennis Ritchie in 1972 for Lynux OS at AT&T Bell Laboratories.
अंग्रेजी सीखने की प्रक्रिया (Process
of learning English)
A-Z ->Words->Sentence->Paragraph
सी प्रोग्रामिंग सीखने की प्रक्रिया (Process of learning C Programming)
Alphabets, numbers, special symbols->constants, variable, keywords->Instructions->Program
Alphabets –
A-Z, a-z
Numbers -0 – 9
Special
symbols - + - * / >< = % & * # ! ~
Constants, Variable and Keywords -
जब अक्षर, संख्याएं और विशेष प्रतीक संयुक्त रूप से Constants, Variable और Keyword बनते हैं। Constants वे मात्राएँ हैं जो मैमोरी में किसी स्थान पर स्टोर होती हैं और यह परिवर्तित नहीं होती हैं। और Variable उस स्थान का नाम है जहां Constants वेल्यू स्टोर करते हैं। और कीवर्ड प्रोग्रामिंग में असाइन किए गए शब्द हैं।
When alphabets, numbers and special symbols are combined form Constants , variable and keyword. Constants are quantity that store at location in memory and it does not change. And variable is the name of location where constants value store. And Keywords are assign words in Programming.
Integer type
पूर्णांकों का उपयोग पूर्ण संख्याओं को संग्रहीत करने के लिए किया जाता है।
Integers
are used to store whole numbers.
16-बिट मशीन पर इंटीजर प्रकार का आकार और सीमा:
Size and
range of Integer type on 16-bit machine:
Type |
Size(bytes) |
Range |
int or signed int |
2 |
-32,768 to 32767 |
unsigned int |
2 |
0 to 65535 |
short int or signed short int |
1 |
-128 to 127 |
unsigned short int |
1 |
0 to 255 |
long int or signed long int |
4 |
-2,147,483,648 to 2,147,483,647 |
unsigned long int |
4 |
0 to 4,294,967,295 |
Floating point type
फ़्लोटिंग प्रकारों का उपयोग वास्तविक संख्याओं को संग्रहीत करने के लिए किया जाता है।
Floating
types are used to store real numbers.
16-बिट मशीन पर इंटीजर प्रकार का आकार और सीमा:
Size and
range of Integer type on 16-bit machine:
Type |
Size(bytes) |
Range |
Float |
4 |
3.4E-38 to 3.4E+38 |
double |
8 |
1.7E-308 to 1.7E+308 |
long double |
10 |
3.4E-4932 to 1.1E+4932 |
Character type
कैरेक्टर प्रकार का उपयोग कैरेक्टर वैल्यू को स्टोर करने के लिए किया जाता है।
Character
types are used to store characters value.
16-बिट मशीन पर इंटीजर प्रकार का आकार और सीमा:
Size and
range of Integer type on 16-bit machine:
Type |
Size(bytes) |
Range |
char or signed char |
1 |
-128 to 127 |
unsigned char |
1 |
0 to 255 |
0 comments:
Post a Comment