You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 13, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,22 @@ Now, take a deep breath, prepare to embark on an exciting adventure, and let's d
88
88
* <b>Programs:</b> A Program is a set of logically related instructions that is arranged in a sequence that directs the computer in solving a problem. Computer programs are one component of software, which also includes documentation and other intangible components. A computer program in its human-readable form is called source code.
89
89
* <b>Programming:</b> The process of writing a program is called programming. Computer programming is the process of performing a particular computation, usually by designing and building an executable computer program. Programming involves tasks such as analysis, generating algorithms, profiling algorithms' accuracy and resource consumption, and the implementation of algorithms.
90
90
91
+
Here in this repository we will start programming with C. Let's write our first code in C that prints something like Hello World!
92
+
93
+
#include<stdio.h>
94
+
int main()
95
+
{
96
+
printf("Hello World!\n");
97
+
return 0;
98
+
}
99
+
100
+
<b>Output:</b>
101
+
102
+
Hello World!
103
+
<b>C Programs Syntax:</b>
104
+
105
+
<imgsrc="media_files/C%20syntax.jpeg">
106
+
91
107
## Computer Software
92
108
It can be broadly classified into two categories:
93
109
1. System Software: An operating system that manages the computer’s resources effectively, takes care of scheduling multiple jobs for execution, and manages the flow of data and instructions between the input/output units and the main memory. (ex: windows 7, windows 10, Linux, Mac. etc.)
@@ -99,7 +115,14 @@ It can be broadly classified into two categories:
99
115
2. Application Software: Application software is written to enable the computer to solve a specific data processing task. (ex: Database management software, Spreadsheet software, multimedia software. Etc.)
100
116
* Pre-written software
101
117
* User-written application programs.
102
-
Classification of Programming Languages: Programming languages are basically classified into two main categories – Low- level language and High-level language. Every programming language belongs to one of these categories and sub-category.
118
+
119
+
# chapter-02
120
+
## Conputational Thinking
121
+
To ex
122
+
# chapter-05
123
+
## Classification of Programming Languages
124
+
125
+
Programming languages are basically classified into two main categories – Low- level language and High-level language. Every programming language belongs to one of these categories and sub-category.
0 commit comments