Basics of C Programming
Section 1: Basics of C Programming
Lesson 1: Introduction to C Language
1.1 Origins of the C Language
C, developed by Dennis Ritchie at Bell Labs in the early 1970s, has been a foundational language in the world of programming. Its design principles prioritize efficiency, low-level memory access, and portability. C played a pivotal role in the creation of the UNIX operating system, influencing the development of subsequent programming languages.
1.2 Basic Structure of a C Program
A basic C program consists of functions, which are blocks of code performing specific tasks. The main function serves as the entry point for program execution.
Example (Hello World in C):
#include <stdio.h>
int main() {
// Displaying "Hello, World!" on the console
printf("Hello, World!\n");
return 0;
}
Lesson 2: Variables and Data Types
2.1 Declaration and Initialization of Variables
Variables are containers for storing data. In C, variables must be declared with a specific data type before use.
Example (Variable Declaration and Initialization):
#include <stdio.h>
int main() {
// Variable declaration and initialization
int age = 25;
float height = 5.8;
char grade = 'A';
// Displaying variable values
printf("Age: %d\n", age);
printf("Height: %f\n", height);
printf("Grade: %c\n", grade);
return 0;
}
2.2 Primitive Data Types in C
C supports various primitive data types, including int for integers, float for floating-point numbers, and char for characters.
Example (Primitive Data Types):
#include <stdio.h>
int main() {
// Primitive data types
int integerNumber = 42;
float floatingNumber = 3.14;
char character = 'A';
// Displaying values
printf("Integer: %d\n", integerNumber);
printf("Float: %f\n", floatingNumber);
printf("Character: %c\n", character);
return 0;
}
Lesson 3: Control Flow and Decision Making
3.1 Conditional Statements (if, else if, else)
Conditional statements allow executing code based on certain conditions.
Example (Conditional Statements):
#include <stdio.h>
int main() {
int age = 18;
// Conditional statement
if (age >= 18) {
printf("You are eligible to vote.\n");
} else {
printf("You are not eligible to vote.\n");
}
return 0;
}
3.2 Switch Statements
Switch statements provide a way to handle multiple conditions more efficiently.
Example (Switch Statement):
#include <stdio.h>
int main() {
char grade = 'B';
// Switch statement
switch (grade) {
case 'A':
printf("Excellent!\n");
break;
case 'B':
printf("Good!\n");
break;
case 'C':
printf("Satisfactory.\n");
break;
default:
printf("Not a valid grade.\n");
}
return 0;
}
Lesson 4: Loops and Iteration
4.1 For Loops
For loops are used for iterative tasks, specifying initialization, condition, and update expressions.
Example (For Loop):
#include <stdio.h>
int main() {
// For loop to print numbers from 1 to 5
for (int i = 1; i <= 5; i++) {
printf("%d ", i);
}
return 0;
}
4.2 While Loops
While loops execute a block of code as long as a specified condition is true.
Example (While Loop):
#include <stdio.h>
int main() {
int count = 1;
// While loop to print numbers from 1 to 3
while (count <= 3) {
printf("%d ", count);
count++;
}
return 0;
}
4.3 Loop Control Statements (break, continue)
Loop control statements modify the normal flow of loops. break terminates the loop, while continue skips the rest of the current iteration and moves to the next.
Example (Loop Control Statements):
#include <stdio.h>
int main() {
// Using break to exit the loop early
for (int i = 1; i <= 5; i++) {
if (i == 3) {
break;
}
printf("%d ", i);
}
// Using continue to skip even numbers
for (int i = 1; i <= 5; i++) {
if (i % 2 == 0) {
continue;
}
printf("%d ", i);
}
return 0;
}
Understanding the basics of C programming, including variables, data types, and control flow, lays the foundation for more complex applications. Practice writing and executing C programs to reinforce your understanding of these fundamental concepts.