Data Structure in C Language Tutorial Notes Study Material with Examples
Data Structure in C Language Tutorial Notes Study Material with Examples Data Structure A data structure is a specialized way for organizing and storing data in memory, so that one can perform operations on it. Data structure is all about How to represent data element(s). What relationship data elements haveContinue Reading
Structures in C Language Tutorial Notes Study Material with Examples
Structures in C Language Tutorial Notes Study Material with Examples Structures Structures in C are used to encapsulate or group together different data into one object. We can define a structure as given below struct object { char id [20]; int rollno; int marks; }; The variablesContinue Reading
Strings in C Language Tutorial Notes Study Material with Examples
Strings in C Language Tutorial Notes Study Material with Examples Strings In C language, strings are stored in an array of character (char) type along with the null terminating character “\O” at the end. char name [ ] = {‘K’, ‘R’ , ’I’, ‘S’, ‘H ‘ , ‘A’, ‘\O’}; ‘\O’=Continue Reading
Array in C Language Tutorial Notes Study Material with Examples
Array in C Language Tutorial Notes Study Material with Examples Array It is a collection of similar elements (having same data type). For an array of 100 elements, the first element’s index is zero ‘0’ and the last index will be 99. This indexed access makes it very convenient toContinue Reading
Pointers in C Language Tutorial Notes Study Material with Examples
Pointers in C Language Tutorial Notes Study Material with Examples Pointers A pointer is a variable that stores memory address. Like all other variables it also has a name, has to be declared and occupies some spaces in memory. It is called pointer because it points to a particular location.Continue Reading
Functions in C Language Tutorial Notes Study Material with Examples
Functions in C Language Tutorial Notes Study Material with Examples Functions A function is a self-contained block of statements that perform a coherent task of some kind. Making function is a way of isolating one block of code from other independent blocks of code. # include <std i o.h> voidContinue Reading
Storage Class in C Language Tutorial Notes Study Material with Examples
Storage Class in C Language Tutorial Notes Study Material with Examples Storage Classes in C: A variable name identifies some physical location within the computer, where the string of bits representing the variable’s value, is stored. There are basically two kinds of locations in a computer,_where such a value mayContinue Reading
C Variable Types Tutorial Notes Study Material with Examples for Beginner
C Variable Types Tutorial Notes Study Material with Examples for Beginner C Variable Types A variable is just a named area of storage that can hold a single value. There are two main variable types Local variable 2.Continue Reading
C Flow Control Statement Tutorial Notes Study Material with Examples
C Flow Control Statement Tutorial Notes Study Material with Examples C Flow Control Statements Control statement is one of the instructions, statements or group of statement in a programming language which determines the sequence of execution of other instructions or statements. C provides two styles of flow controls Branching (decidingContinue Reading
Programming Concept in C Language Tutorial Notes with Examples
Programming Concept in C Language Tutorial Notes with Examples Programming Concepts in C Language C is a high level language. It is general as well as specific purpose language. It was developed at Bell laboratory, USA (now AT and 1 in 1972, by Dennis Ritchie and Brian Kernighan. To learnContinue Reading