Posts
C Program to Calculate Rank list of Class Students using Pointers
/0 Comments/in Examples /by YasoThe 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 Pointers with Example
/0 Comments/in C Programming /by YasoC 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