Data Types of C Language

Data type defines the type of data a variable will store. C provides a number of data types:Char, int long int, float, Double,long double etc.

Identifiers of C Language

Identifiers are the name given to a variable, function, array, structure etc. There are some rules for declaring an identifier:The identifier name must contain only alphabets, digits or an underscore.First…

Keywords of C Language

Keywords are reserved words by a programming language. These are reserved by a programming language for a specific task. C has total 32 reserved words whose task is pre-defined and…

Syntax of C Language

Turbo C++ Dev C++ / VSCode #include<stdio.h>#include<conio.h> int main(){printf("Hello Friends ");getch();}#include<stdio.h>using namespace std; int main(){printf("Hello Guys");return 0;}

Token of C Language

Every individual elements of a C programming language are referred to as Tokens. In simpler words we can say that all the elements present in C programming language has been…

Feature of C Language

C Language is a Most Popular  Programming Language in the world.C Language is very Fast working by other Programming Language of Java, Python, C++, etc.C Language is a structural Language…

Introduction of C Language

C language is a Structured Programming Language.C Language is a middle – Level Language procedural oriented programming language developed by “ Dennis Ritchie “. At & T Bell Laboratories In…