Every variable in C program has two properties: type and storage class. Type refers to the data type of variable And storage class determin...
Read More
Showing posts with label Different types of Computers. Show all posts
Showing posts with label Different types of Computers. Show all posts
REGISTER VARIABLES and EXTERNAL VARIABLES
Using keyword register we can declare a register variable. Ex: register int flag = 1; Register variables are stored in high-speed register...
Read More
Pointers in C
Pointers like all other variables in C must be declared as such prior to use. Syntax : type *ptr ; which indicates that ptr is a pointe...
Read More
Pointers and Arrays
There is a very close relationship between pointer and array notation in C. As we have seen already the name of an array ( or string ) is a...
Read More
Types of Data Structures
A data structure is an arrangement of data in a computer's memory or even disk storage. Data structures can be classified into two typ...
Read More
Subscribe to:
Posts (Atom)