Posts

C Program to Find Total of Even Integers

C Program to Print Elements of Array using Pointers

The following program to Print Elements of Array using Pointers with simple code with examples.

The C pointer is a variable whose value is the address of another variable, i.e., direct address of the memory location. Like any variable or … Read More

C Program to Find Total of Even Integers

C Program to Calculate Rank list of Class Students using Pointers

The C program to Processing of Examination Marks and to calculate rank list of class students by using pointers with two dimensional arrays. The Marks obtained by batch of students in the Annual Examination are tabulated as follows:

Student name … Read More

C Program to Find Total of Even Integers

C Pointers with Example

C pointers is special type of variable which holds the address or location of another variable. Pointers point to these locations by keeping a record of the spot at which they were stored. Pointers to variables are found by recording … Read More