C program for size of array #include <stdio.h> int main( ) { int i,num; printf ( "\nEnter th...
insert into array
C program - How to insert number into array #include <stdio.h> #include <conio.h> void main() { ...
cyclically permute the array
C program to cyclically permute the array #include <stdio.h> void main () { int i,n,number[30]; pr...
sum of all elements in array
Array summation - Sum of all elements in array #include <stdio.h> #include <conio.h> #include <malloc.h> ...
searching-element-in-an-array
C program to search an element in an array #include <stdio.h> #include <conio.h> ...
c program for Floyds triangle
C program for Floyds triangle #include <stdio.h> int main(){ int i,j,r,k=1; printf( "Enter the ran...
C program to print ASCII value
C program for printing ASCII value #include <stdio.h> int main(){ int i; for (i=0;i<=255...
delete an element from array
How to delete an element from an array #include <stdio.h> void main() { int vectx[10]; int i, n, pos, ...
How to add two array / array addition
c program - addition of two array #include<stdio.h> int main() { int a[20], b[20], c[30], i, n; pr...
insert number at desired position in an array
How to insert an element at desired position in an array #include <stdio.h> int main (){ int a[50],size,num,i,pos,...
find largest number in an array
How to find largest number of an array #include <stdio.h> int main(){ int a[50],size,i,big; printf( "\nE...