Program : To delete duplicate elements in an array
#include<stdio.h>
#include<conio.h>
main()
{
int a[20],i,j,k,n;
clrscr();
printf("nEnter...
C decrementing pointer
In the last chapter we have studied about the increment operation on pointer variable in this chapter we will...
C Program to Read integers into an array and Reversing them using Pointers
Write a C program using pointers to read in an array of integers and print its elements in reverse order.
#include<stdio.h>
#include<conio.h>
#define...
C incrementing pointer
Incrementing Pointer :
Incrementing Pointer is generally used in array because we have contiguous memory in array and...
C Program to Implement Stack Operations Using Array
C Program to implement Stack Operations Using Stack
Program for implementing a stack using arrays.It involvesvarious...
Subscribe to:
Posts (Atom)