PASS ARRAY FROM ONE FUNCTION TO ANOTHER
In below code we pass an array from one function to another in C
#include<stdio.h>
#include<conio.h>
void pass(int[],int);
void main()
{
int a[]={1,2,3,4,5};
clrscr();
pass(a,5);
getch();
}
void pass(int b[],int n)
{
int i;
for(i=0;i<n;i++)
{
printf(" %d\n",b[i]);
}
}
OUTPUT
No comments:
Post a Comment