int DIMension(int array[]){
return sizeof(array/sizeof(int);}
main(){
int arr[10];
printf(“Array dimension is %d”,DIMension(arr));
}
|
Newbie Member
|
|
| 2Aug2011,16:31 | #2 |
|
Code:
#include <stdio.h>
#include<conio.h>
void funarr(int arr[], int len)
{
printf("\nEnter the length of array :");
scanf("%\nd",&len);
printf("\nEnter the elements of the array :");
for(i=0; i<len; i++)
{
scanf("%d",&arr[i]);
}
printf("\nThe elements of the array are as follows :");
for(i=0; i<len; i++)
{
printf("\n%d",arr[i]);
}
}
void main()
{
int myarr[100];
clrscr();
funarr(myarr, 7);
getch();
}
|
|
Light Poster
|
|
| 2Aug2011,18:09 | #3 |
|
Quote:
Originally Posted by kumar3749 |
|
Mentor
|
![]() |
| 3Aug2011,12:56 | #4 |
|
Why not grab yourself a compiler and try these things out?
|


