配列インデックス 0 ~ 499 の文字列「$1」~「$500」を含むように「sval」を取得しようとしています。次のコードでは、しかし、itoa は以下のコードで私に奇妙な文字列を与えています:
#include<iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
typedef struct data_t {
int ival;
char *sval;
} data_t;
void f1(data_t **d);
int main()
{
data_t *d;
d=static_cast<data_t*>(malloc(500)); //is this even needed?
d = new data_t[500];
f1(&d);
}
/* code for function f1 to fill in array begins */
void f1(data_t **d)
{
int i;
char str[5];
for (int i=0; i<500; i++)
{
(*d)[i].ival=i+1;
itoa (i,str,10);
(*d)[i].sval= str;
}
}
itoa も減価償却されているようですが、int を string にググったときに得たものです。