#include<stdio.h> int main () { int a[50],n,max, i; printf(“\n\tEnter the number of elements: “); scanf(“%d”,&n); printf(“\...
Read More
Showing posts with label Multi dimensional array. Show all posts
Showing posts with label Multi dimensional array. Show all posts
Binary Search
If we look at the questions viz. How do we search for a person’s telephone number? If we know only the person’s name. and How difficult is ...
Read More
Multiple Indirection Pointers to Pointers
It is possible in C to have a pointer point to another pointer that points to a target value. This is termed multiple indirection in this c...
Read More
The Queue ADT
Queue Model A Queue is a linear data structure which follows First In First Out (FIFO) principle, in which insertion is performed at rear ...
Read More
ARRAYS in C programming language
ARRAY Array is a collection of homogeneous elements (elements of same data type), stored sequentially one after the other in memory. An...
Read More
Subscribe to:
Posts (Atom)