#include<stdio.h>
#include<conio.h>
void main()
{
int i,a[50],sum,n;
printf("n Enter no of elements :");
...
C Program to Print Array Elements
C Programs
#include<stdio.h>
#include<conio.h>
void main()
{
int i,a[50],sum,n;
printf("n Enter no of elements :");
...
C Program to Delete an element from the specified location from Array
// n - no.of elements in array
// i - for traversing the array
// j - location of the element to be deleted
// a -...
C Program to Insert an element in an Array
#include<stdio.h>
int main()
{
int arr[30],element,num,i,location;
printf("n Enter no of elements :");
scanf("%d",&num);
...
C Program to Copy all elements of an array into Another array
//Title : Copy Array Elements from one array to another
//a - Source Array ( elements will be copied from this array)
//b...
C Program to Search an element in Array
#include<stdio.h>
#include<conio.h>
void main()
{
int a[30],x,n,i;
/*
a - for storing of data
x...
Subscribe to:
Posts (Atom)