itoa()函数返回指向字符型的指针,下面怎么不行
#include <stdio.h>
#include <conio.h>
#define N 10
int main(void)
{
int i = 1994, j;
char str[N] = {'\0'}, strb[N] = {'\0'};
strb[10] = itoa(i, str, 10);
printf("%s\n", strb);
getch();
return 0;
}
以上为什么不行