C Tutorial
C Escape Sequence
An escape sequence in C language is a sequence of characters that doesn’t represent itself when used inside string literal or character. It is composed…
C Comments
Comments in C language are used to provide information about lines of code. It is widely used for documenting code. There are 2 types of…
C Operators
An operator is simply a symbol that is used to perform operations. There can be many types of operations like arithmetic, logical, bitwise etc. There…
Keywords in C
A keyword is a reserved word. You cannot use it as a variable name, constant name etc. There are only 32 reserved words (keywords) in…
Data Types in C
A data type specifies the type of data that a variable can store such as integer, floating, character etc. There are 4 types of data…
Variables in C
A variable is a name of memory location. It is used to store data. Its value can be changed and it can be reused many…
printf scanf
The printf() and scanf() functions are used for input and output in C language. Both functions are inbuilt library functions, defined in stdio.h (header file)….
Flow of C Program
The C program follows many steps in execution. To understand the flow of C program well, let us see a simple program first. File: simple.c…
First C Program
Before starting the abcd of C language, you need to learn how to write, compile and run the first c program. To write the first…
How to install C
There are many compilers available for c and c++. You need to download any one. Here, we are going to use Turbo C++. It will…