- 论坛徽章:
- 0
|
#include <stdio.h>
#define MAX 5
// Write a program that declares a 3x5 array and initializes it to some values of your choice. Have the program print the values, double all the values, and then display the new values. Write a function to do the displaying and a second function to do the doubling. Have the functions take the array name and the number of rows as arguments.
void dispaly_ptr(int (*)[MAX],int);
void double_ptr(int (*)[MAX],int);
int main(void)
{
int arr[][MAX]={{1,2,3,4,5},{6,7,8,9,10},{11,12,13,14,15}};
printf("original is :\n");
display_ptr(arr,3);
double_ptr(arr,3);
printf("now is :\n");
display_ptr(arr,3);
return 0;
}
void display_ptr(int (*arr)[MAX],int n)
{
int i,j;
for(i=0;i<n;i++)
{
for(j=0;j<MAX;j++)
printf(" %d",*(*(arr+i)+j));
printf("\n");
}
}
void double_ptr(int (*arr)[MAX],int n)
{
int i,j;
for(i=0;i<n;i++)
for(j=0;j<MAX;j++)
*(*(arr+i)+j)*=2;
}
[watch@pt10 chapter10]$ gcc 10.c -o 10
10.c:24: warning: conflicting types for ‘display_ptr’
10.c:13: warning: previous implicit declaration of ‘display_ptr’ was here
求指导? |
|