C – Tokens

What is Token in C? The basic and smallest unit of a C program is called C tokens. This tokens are meaningful to the compiler. Compiler breaks the programs into smallest unit that is the tokens and proceed various compilation …

Read moreC – Tokens

C -Introduction

C is one of the most commonly used programming languages. It is a general-purpose, high-level language (generally denoted as structured language). C is used for creating a compiler of different languages, implementation of different Operating System Operations. C programming language …

Read moreC -Introduction

Features of C

Features and advantages of C Simple and easy to learn. Fast, Powerful & Efficient. Procedural Language Portable language. Structured Programming Language Rich Library. Mid-Level Programming Language. Pointers/Recursion. Extensible 1. Simple and easy to learn.C is simple and easy to learn …

Read moreFeatures of C

C – Variables

What are variables in C? The variable is the basic unit of storage that holds the value while the program is executed. We can also say that it is a name given to the memory location. A variable is defined …

Read moreC – Variables

C – Program Structure

Before we start the basic building blocks of the C programming language, we must know the Program Structure of C for the building of programs. A C program basically consists of the following parts: Preprocessor Commands. Functions. Variables. Statement & …

Read moreC – Program Structure