|
2 | 2 |
|
3 | 3 | Table of Contents |
4 | 4 | 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) |
18 | 18 |
|
19 | 19 | ## Intro |
20 | 20 | Of all the inventions in the field of electronics |
@@ -60,7 +60,7 @@ rather we just want to get the core |
60 | 60 | concepts of computer programming that are |
61 | 61 | common in different programming languages.* |
62 | 62 |
|
63 | | -## Input / Output |
| 63 | +## Input And Output |
64 | 64 | As was mentioned, a programmable computer is very |
65 | 65 | important but the way you interact with the computer |
66 | 66 | is through input and output: you as the user |
@@ -119,7 +119,7 @@ idea of what a programmable computer is all about. |
119 | 119 | It's you telling the computer to do things it |
120 | 120 | can handle in terms of binary data. |
121 | 121 |
|
122 | | -## Variables & Data Types |
| 122 | +## Variables And Data Types |
123 | 123 | In computer programming, a **variable** is just like |
124 | 124 | a container to store digital data. A **data type** |
125 | 125 | is the way you tell the computer how that data |
@@ -319,7 +319,7 @@ particularly when you want to catch the FALSE result |
319 | 319 | or create a nested IF-ELSE. So, you want to extend it |
320 | 320 | and catch the FALSE result. |
321 | 321 |
|
322 | | -### Sample Program Using IF/ELSE |
| 322 | +### Sample Program Using IF ELSE |
323 | 323 | ``` |
324 | 324 | #include <stdio.h> |
325 | 325 |
|
|
0 commit comments