Skip to main content

What is C language | C language uses | Topics of C language


In this blog I will tell you the most common uses of C language Programming and the Topics that I will cover in my Tutorial of C Language


What are the uses of c language ?

  • C language is used to code a wide variety of advance systems that are very fast executed and works efficiently .
  • C was developed for the development of unix operating system (OS).
  • Major parts of windows , linux , and other operating systems are written using C language.
  • C is widely used to write device driver programs such as driver programs for hardwares like tablets, printers,routers , keyboard and mouses etc .
  • C language is used to program embedded system where requirement of execution speed is very faster and also it has to be executed in a limited memory. These type of programs are written is C language to archive the faster execution in limited memory. the devices for which these type of programs are written can be Microwave ovens, Cameras, smart washing machines , refrigrators etc.
  • Apart from that C language is also used for game development which is very intresting application of c language. In game development Latency is very important i.e. computer has to react so quickly on the user inputs.  
Chapters / Topics in C language :

This c language course will consist of 11 chapters :
  1. Variables, Constants and keywords.
  2. Instructions and Operators.
  3. Conditional Instructions.
  4. Loop Control Instructions
  5. Function and Recursions.
  6. Concept of Pointers.
  7. Arrays.
  8. Strings.
  9. Structures.
  10. File I/O.
  11. DMA --> Dynamic Memory Allocation.

Comments

Popular posts from this blog

Structure of C Program with Example | C Programming

In this post I will tell you the basic structure of C program  with example in C programming in very simple words. Our First C program : # include<stdio.h> int main() {            printf("Hello World");            return 0; } save te above program with file name "First.c" Note : Every C language file should be saved using .C extention name. Basic structure of a C program : All C programs have to follow a basic structure. The execution of a C program starts from the main() function. The C compiler starts execution from the main() function and executes each statement written inside the main() function line by line. Each instruction of a C program should be terminated by a semicolon ( ; ) i.e. every line of a C program ends with the semicolon ( ; ). 1.      Every program execution starts from the main( ) function. 2.   ...

What is C language | C language tutorial | C language basics

  C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972.  C is strongly associated with UNIX, as it was developed to write the UNIX operating system. C Language Tutorial : What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system. Why Learn C? It is one of the most popular programming language in the world If you know C, you will have no problem learning other popular programming languages such as Java, Python, C++, C#, etc, as the syntax is similar C is very fast, compared to other programming languages, like  Java  and  Python C is very versatile; it can be used in both applications and technologies

What Are Variables in C language | Constants and Keywords in language

Variables are the containers in C language which are used to store data in the program. Variables are the small memory blocks which holds some values in it. Variables in c language :       What are variables in C language ?     In C language, A variable is just like a container that contains values of different data           types. A variable is an entity whose value can be change.      This means that to store any value we use variables in C language. These variables can e        imagined as the small memory blocks in which the data is stored of different types. The           variables are the one of important components of c language as it is used most                          frequently inside the programs of C language.        For Instance In our Kitchen we have differen...