Skip to content
This repository was archived by the owner on Jul 13, 2025. It is now read-only.

Commit c5f1174

Browse files
Readme Updated
1 parent 8e58c3a commit c5f1174

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,22 @@ Now, take a deep breath, prepare to embark on an exciting adventure, and let's d
8888
* <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.
8989
* <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.
9090

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+
<img src="media_files/C%20syntax.jpeg">
106+
91107
## Computer Software
92108
It can be broadly classified into two categories:
93109
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:
99115
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.)
100116
* Pre-written software
101117
* 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.
103126
1. High-level language: to write application programs. Ex: BASIC, COBOL, FORTRAN.
104127
2. Middle-level language: to write applications and system programs. Ex: C.
105128
3. Low-level language: mostly used to write system programs. Ex: Assembly language.

media_files/C syntax.jpeg

73 KB
Loading

0 commit comments

Comments
 (0)