红联Linux门户
Linux帮助

linux写C代码出现warning: format not a string literal and no

发布时间:2016-12-31 09:55:18来源:linux网站作者:改变自己chenyu
今天编写C语言代码的时候出现下面错误:
linux写C代码出现warning: format not a string literal and no
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代码写习惯了,不能动不动就是+。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27400.html