为什么使用c99标准,就显示warning: implicit declaration of function 'itoa'|
写java程序的时候,比如一个循环例子:
for(int i=0;i<10;i++)
{
....
}
我用c程序写的时候
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
for(int i=0;i<10;i++)
{
;
}
编译的时候,提示: -std=c99
我加上这句后,再编译,通过了。
但是显示: warning: implicit declaration of function 'itoa'|
我上面已经加了:#include <stdlib.h>
为什么会显示: warning: implicit declaration of function 'itoa'|
我平时使用的是 CodeBlocks 练习 c