Constants (often referred to as literals) are data items that are fixed data values. That means a constant is a...
Continue reading...Learn2Done
C VARIABLES
A variable is a named memory location, which holds a data value of a particular data type. The value of...
Continue reading...C ENVIROMENT SETUP
C is a procedural programming language. It was initially developed by Dennis Ritchie in 1972. It was mainly developed as...
Continue reading...C FIRST PROGRAM
Before starting the abcd of C language, you need to learn how to write, compile and run the first c...
Continue reading...C FEATURES
FEATURES OF C. Simple Machine independent or portable Mid-level programming language Structure programming language Rich library Memory management Speed Pointers...
Continue reading...C PROGRAM STRUCTURE
#include <stdio.h> void main() { printf("Learn2Done"); } Explanation of the above syntax: #include: it is a preprocessor directive that tells the compiler...
Continue reading...C HISTORY
The root of all modern languages is ALGOL, introduced in the early 1960s. AlGOL gave the concept of structured programming...
Continue reading...C++ INTRODUCTION
C++ is a object – oriented programming language developed by Bjarne Stroustrup, starting in 1979 at Bell Labs. It was...
Continue reading...C INTRODUCTION
C is a procedural programming language. It was initially developed by Dennis Ritchie in 1972. It was mainly developed as...
Continue reading...