今天编写C语言代码的时候出现下面错误:
reverse.c:6:5: warning: format not a string literal and no format arguments [-Wformat-security]
解决办法:
把printf("length is %d" + length);改成:
printf("length is %d", length);
以后不要出现这样的低级错误,写Java代码写习惯了,不能动不动就是+。