07.10.2012, 05:20
arrUpdates[iUpd][g_Update1] = strlen(inputtext);
It is updating to the number of letters. You might try:
arrUpdates[iUpd][g_Update1] = inputtext;
or even
format(arrUpdates[iUpd][g_Update1], 64, "%s", inputtext);
It is updating to the number of letters. You might try:
arrUpdates[iUpd][g_Update1] = inputtext;
or even
format(arrUpdates[iUpd][g_Update1], 64, "%s", inputtext);