How to find size of array How to find size of array

              C program for size of array #include <stdio.h> int  main( ) {   int  i,num;   printf ( "\nEnter th...

Read more »

insert into array insert into array

         C program - How to insert number into array #include <stdio.h> #include <conio.h> void  main() {  ...

Read more »

cyclically permute the array cyclically permute the array

          C program to cyclically permute the array  #include <stdio.h> void  main () {   int  i,n,number[30];   pr...

Read more »

sum of all elements in array sum of all elements in array

Array summation -  Sum of all elements in array #include <stdio.h> #include <conio.h> #include <malloc.h> ...

Read more »

searching-element-in-an-array searching-element-in-an-array

                                C program to search an element in an array #include <stdio.h> #include <conio.h> ...

Read more »

c program for Floyds triangle 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...

Read more »

C program to print ASCII value C program to print ASCII value

C program for printing ASCII value #include <stdio.h>   int  main(){         int  i;         for (i=0;i<=255...

Read more »

delete an element from array 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, ...

Read more »

How to add two array / array addition 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...

Read more »

insert number at desired position in an array 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,...

Read more »

find largest number in an array 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...

Read more »
 
Top