免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1596 | 回复: 6
打印 上一主题 下一主题

[C] 程序错误 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-22 11:06 |只看该作者 |倒序浏览
程序如下,在linux系统下,用g++编译的时候总是提示出如下错误:
1.第8行的 void要求前面加initiator
2. 主程序中int main()中没有声明 read_column_numbers 和 rearrange 函数。

第一个问题,实在不知道什么意思?
第二个问题,那两个函数命名已经声明了啊

这个程序在windows下可以编译,在linux下不一样吗?

谢谢!
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #define MAX_COLS 20
  5. #define MAX_INPUT 1000

  6. int read_column_numbers( int columns[], int max );
  7. void rearrange( char *output, char const *input, int n_columns, int const columns[] );

  8. int main( void )
  9. {
  10.    int n_columns;
  11.    int columns[MAX_COLS];
  12.    char input[MAX_INPUT];
  13.    char output[MAX_INPUT];
  14.   
  15.    n_columns = read_column_numbers( columns, MAX_COLS );
  16.   
  17.    
  18.    while( gets( input ) != NULL )
  19.    {
  20.        printf( "Original input : %s\n", input );
  21.        rearrange( output, input, n_columns, columns );
  22.        printf( "Rearranged line: %s\n", output );
  23.    }

  24.    return EXIT_SUCCESS;
  25. }

  26. int read_column_numbers( int columns[], int max )
  27. {
  28.    int num = 0;
  29.    int ch;
  30.    while( num < max && scanf( "%d", &columns[num] ) == 1 && columns[num] >= 0 )
  31.       num +=1;

  32.    if( num % 2 != 0 )
  33.    {  
  34.       puts( "Last column number is not paired.");
  35.       exit( EXIT_FAILURE );
  36.    }
  37.    while( (ch = getchar() ) != EOF && ch!= '\n' )
  38.       ;
  39.    return num;
  40. }

  41. void rearrange( char *output, char const *input, int n_columns, int const columns[] )
  42. {
  43.    int col;
  44.    int output_col;
  45.    int len;
  46.    len = strlen( input );
  47.    output_col = 0;
  48.    for ( col = 0; col < n_columns; col += 2)
  49.    {
  50.       int nchars = columns[col + 1] - columns[col] + 1;
  51.       if ( columns[col] >= len || output_col == MAX_INPUT -1 )
  52.          break;
  53.       if( output_col + nchars > MAX_INPUT - 1)
  54.          nchars = MAX_INPUT - output_col - 1;
  55.       strncpy( output + output_col, input + columns[col], nchars );
  56.       output_col += nchars;
  57.    }
  58.    output[output_col] = '\0';
  59. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2012-08-22 11:49 |只看该作者
用gcc编译通过了啊
是不是你用g++的原因?
g++是C++的编译器

论坛徽章:
7
摩羯座
日期:2013-12-05 10:42:57辰龙
日期:2013-12-27 13:40:49亥猪
日期:2014-01-15 09:10:37天秤座
日期:2014-01-20 11:22:20辰龙
日期:2014-01-26 17:02:25午马
日期:2014-01-27 14:22:34水瓶座
日期:2014-02-19 09:36:40
3 [报告]
发表于 2012-08-22 14:39 |只看该作者
请把编译出错的打印信息发出来


回复 1# caofa0532


   

论坛徽章:
0
4 [报告]
发表于 2012-08-22 15:16 |只看该作者
请问有可能是因为用G++编译而不适用gcc编译的原因吗?

论坛徽章:
0
5 [报告]
发表于 2012-08-22 15:49 |只看该作者
可能是由于你用g++编译的原因吧

论坛徽章:
14
巨蟹座
日期:2013-11-19 14:09:4615-16赛季CBA联赛之青岛
日期:2016-07-05 12:36:0515-16赛季CBA联赛之广东
日期:2016-06-29 11:45:542015亚冠之全北现代
日期:2015-07-22 08:09:472015年辞旧岁徽章
日期:2015-03-03 16:54:15巨蟹座
日期:2014-12-29 08:22:29射手座
日期:2014-12-05 08:20:39狮子座
日期:2014-11-05 12:33:52寅虎
日期:2014-08-13 09:01:31巳蛇
日期:2014-06-16 16:29:52技术图书徽章
日期:2014-04-15 08:44:01天蝎座
日期:2014-03-11 13:06:45
6 [报告]
发表于 2012-08-22 16:39 |只看该作者
mingw 4.7.0
用 gcc 和 g++ 都编译通过

论坛徽章:
0
7 [报告]
发表于 2012-08-23 12:36 |只看该作者
刚刚复制了你的代码在gcc和g++分别编译了一下。
都正常通过。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP