我现在ICCAVR中编了一段简单的函数 #include<stdio.h> void main(void) { unsigned char tmp[10]; int n=0; sprintf( tmp, "%d", n ); } 编译后总是报错 type error in argument 2 to `sprintf'; found `pointer to const char' expected `pointer to char' C:\icc\bin\imakew.exe: Error code 1 后来我把程序在别的编译器上编译都得到通过了,难道是ICCAVR不支持sprintf函数吗,这个我很困惑 谢谢各位帮我看看 |