Skip to content

Commit 8fd9dfe

Browse files
Merge pull request #1 from xdvrx1/update1
Update 1
2 parents a01b5e5 + ab28d2a commit 8fd9dfe

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
# Core Concepts of Computer Programming
2+
3+
Table of Contents
4+
1. [Intro](#intro)
5+
2. [Input / Output](#input-and-output)
6+
1. [Hello World Program](#hello-world-program)
7+
3. [Variables & Data Types](#variables-and-data-types)
8+
1. [Sample Program for Variables and Data Types](#sample-program-for-variables-and-data-types)
9+
4. [Operators](#operators)
10+
1. [Assignment Operators Sample Program](#assignment-operators-sample-program)
11+
2. [Arithmetic Operators Sample Program](#arithmetic-operators-sample-program)
12+
3. [Comparison Operators Sample Program](#comparison-operators-sample-program)
13+
5. [Conditionals](#conditionals)
14+
1. [Sample Program Using IF](#sample-program-using-if)
15+
2. [Sample Program Using IF/ELSE](#sample-program-using-if-else)
16+
6. [Functions](#functions)
17+
1. [Sample Program Creating And Using Functions](#sample-program-creating-and-using-functions)
18+
19+
## Intro
220
Of all the inventions in the field of electronics
321
like the radio and telephone, the programmable computer
422
was the most significant one. It changed the
@@ -42,7 +60,7 @@ rather we just want to get the core
4260
concepts of computer programming that are
4361
common in different programming languages.*
4462

45-
## Input / Output
63+
## Input And Output
4664
As was mentioned, a programmable computer is very
4765
important but the way you interact with the computer
4866
is through input and output: you as the user
@@ -101,7 +119,7 @@ idea of what a programmable computer is all about.
101119
It's you telling the computer to do things it
102120
can handle in terms of binary data.
103121

104-
## Variables & Data Types
122+
## Variables And Data Types
105123
In computer programming, a **variable** is just like
106124
a container to store digital data. A **data type**
107125
is the way you tell the computer how that data
@@ -301,7 +319,7 @@ particularly when you want to catch the FALSE result
301319
or create a nested IF-ELSE. So, you want to extend it
302320
and catch the FALSE result.
303321

304-
### Sample Program Using IF/ELSE
322+
### Sample Program Using IF ELSE
305323
```
306324
#include <stdio.h>
307325

0 commit comments

Comments
 (0)