array算IP地址的C语言题

时间:2013-05-08 10:37:24
【文件属性】:

文件名称:array算IP地址的C语言题

文件大小:27KB

文件格式:DOC

更新时间:2013-05-08 10:37:24

array算IP地址的C语言题

array算IP地址的C语言题 程序a.c 如下: #include #include typedef struct MY_IP { int xx,yy,zz,mm; char name[11]; } MY_IP; void scan_address(char *namein, MY_IP *ip, int *NN) { FILE *fin; int j,nn=0; int buff_size = 72; char *buff; buff = (char *) malloc(buff_size * sizeof (char)); if ( (fin = fopen(namein,"r") ) == NULL ) { printf("\007Cann't open input file: %s ", namein);exit(1); }; ........


网友评论