| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 578 人关注过本帖
标题:结构指标数组参数传递的问题....求高手!!!!
只看楼主 加入收藏
恰擊
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2011-11-8
结帖率:33.33%
收藏
 问题点数:0 回复次数:0 
结构指标数组参数传递的问题....求高手!!!!
在MAIN函式里,当我将结构数组emp[5]定义为指标时,VOID函式可以运行,
但我把emp[5]定义为一个时,函式就不能运行,其错误报告为:   
  cannot convert `Employee (*)[5]' to `Employee**' for argument `1' to `void stat(Employee**)'
 
下面是我的编码:
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define max 100
struct Date{
  int year;
  int month;
  int day;      
};
 
struct Employee{
  int EmpID;    // starting from 111111
  Date dob;    //  day of birth
  int Salary;   //  between 20000~70000
  char Sex;     // M for Male, F for Female
};
 
void stat(struct Employee *hi[]){
    int i,s;
    for(i=0;i<5;i++){
        hi[i]=(struct Employee *)malloc(sizeof(struct Employee));
        }
    srand(time(NULL));
    for(i=0;i<5;i++){
        s=rand()%1;
        if(s==0){
            hi[i]->Sex='M';
            }
        else
            hi[i]->Sex='F';
        }
    for(i=0;i<5;i++){
        s=20000+rand()%50000;
        hi[i]->Salary=s;
        }

    }
int main(){
    int i;
    struct Employee emp[5];
    stat(&emp);
    printf(" EmpID   Sex   Birthday   Salary ");
    printf("---------------------------------");
    printf("\n");
    for(i=0;i<5;i++){
        printf("11111%d    ",i+1);
        printf("%c   ",emp[i].Sex);
        printf("%2d/%2d/%d",emp[i].dob);
        printf("\n");
        }
    system("pause");
    }
搜索更多相关主题的帖子: include 
2011-11-23 11:50
快速回复:结构指标数组参数传递的问题....求高手!!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018796 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved