问答详情
源自:5-9 递归函数练习

求教~为什么会有这个warning??

运行成功

hello.c: In function 'getAge':
hello.c:7:5: warning: type of 'numPeople' defaults to 'int' [-Wimplicit-int]
 int getAge(numPeople)
     ^~~~~~
第5个人的年龄是18岁

提问者:慕丝9088593 2018-06-14 16:13

个回答

  • yqshy
    2018-06-15 09:35:13
    已采纳

    将你的 int getAge(numPeople) 改为int getAge(int numPeople)

  • 卡布奇诺qi
    2018-07-06 20:44:42

    为什么这样就错了啊,什么时候才要加定义类型