Skip to content

Commit ab28d2a

Browse files
Update README.md
1 parent 97b32d3 commit ab28d2a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
Table of Contents
44
1. [Intro](#intro)
5-
2. [Input / Output](#input-output)
6-
1. Hello World Program
7-
3. Variables & Data Types
8-
1. Sample Program for Variables and Data Types
9-
4. Operators
10-
1. Assignment Operators Sample Program
11-
2. Arithmetic Operators Sample Program
12-
3. Comparison Operators Sample Program
13-
5. Conditionals
14-
1. Sample Program Using IF
15-
2. Sample Program Using IF/ELSE
16-
6. Functions
17-
7. Sample Program Creating And Using Functions
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)
1818

1919
## Intro
2020
Of all the inventions in the field of electronics
@@ -60,7 +60,7 @@ rather we just want to get the core
6060
concepts of computer programming that are
6161
common in different programming languages.*
6262

63-
## Input / Output
63+
## Input And Output
6464
As was mentioned, a programmable computer is very
6565
important but the way you interact with the computer
6666
is through input and output: you as the user
@@ -119,7 +119,7 @@ idea of what a programmable computer is all about.
119119
It's you telling the computer to do things it
120120
can handle in terms of binary data.
121121

122-
## Variables & Data Types
122+
## Variables And Data Types
123123
In computer programming, a **variable** is just like
124124
a container to store digital data. A **data type**
125125
is the way you tell the computer how that data
@@ -319,7 +319,7 @@ particularly when you want to catch the FALSE result
319319
or create a nested IF-ELSE. So, you want to extend it
320320
and catch the FALSE result.
321321

322-
### Sample Program Using IF/ELSE
322+
### Sample Program Using IF ELSE
323323
```
324324
#include <stdio.h>
325325

0 commit comments

Comments
 (0)