C Programming Session1_intro
C Programming Session1_intro
C language Tutorial with programming approach for beginners and professionals, helps
you to understand the C language tutorial easily. Our C tutorial explains each topic with
programs.
The C Language is developed by Dennis Ritchie for creating system applications that
directly interact with the hardware devices such as drivers, kernels, etc.
C programming is considered as the base for other programming languages, that is why
it is known as mother language.
1. Mother language
1) C as a mother language
C language is considered as the mother language of all the modern programming
languages because most of the compilers, JVMs, Kernels, etc. are written in C
language, and most of the programming languages follow C syntax, for example, C++,
Java, C#, etc.
It provides the core concepts like the array, strings, functions, file handling, etc. that are
being used in many languages like C++, Java, C#, etc.
3) C as a procedural language
A procedure is known as a function, method, routine, subroutine, etc. A procedural
language specifies a series of steps for the program to solve the problem.
A procedural language breaks the program into functions, data structures, etc.
In the C language, we break the program into parts using functions. It makes the
program easier to understand and modify.
C Program
In this tutorial, all C programs are given with C compiler so that you can quickly change
the C program code.
File: main.c
#include <stdio.h>
int main() {
printf("Hello C Programming\n");
return 0;
}
History of C Language
It was developed to overcome the problems of previous languages such as B, BCPL, etc.
Let's see the programming languages that were developed before C language.
Language Year Developed By
Features of C Language
C is the widely used language. It provides many features that are given below.
1. Simple
5. Rich Library
6. Memory Management
7. Fast Speed
8. Pointers
9. Recursion
10. Extensible
1) Simple
C is a simple language in the sense that it provides a structured approach (to break
the problem into parts), the rich set of library functions, data types, etc.
2) Machine Independent or Portable
Unlike assembly language, c programs can be executed on different machines with
some machine specific changes. Therefore, C is a machine independent language.
5) Rich Library
C provides a lot of inbuilt functions that make the development fast.
6) Memory Management
It supports the feature of dynamic memory allocation. In C language, we can free the
allocated memory at any time by calling the free() function.
7) Speed
The compilation and execution time of C language is fast since there are lesser inbuilt
functions and hence the lesser overhead.
8) Pointer
C provides the feature of pointers. We can directly interact with the memory by using
the pointers. We can use pointers for memory, structures, functions, array, etc.
9) Recursion
In C, we can call the function within the function. It provides code reusability for
every function. Recursion enables us to use the approach of backtracking.
10) Extensible
C language is extensible because it can easily adopt new features.
//Numerous C programming exercises and practice problems
2.Input/Output functions:.
14.Reverse a number.
16.Arrays:
22.Strings:
23.Reverse a string.
24.Concatenate two strings.
27.Functions:
31.Pointers:
34.Implement dynamic memory allocation using malloc(), calloc(), realloc(), and free().
Advanced C Programs:
4.File Handling:
7.Linked Lists: