13.02.2014, 06:09
inputtext[0] = first character.
inputtext[1] = second character..
and so on..
A string is basically an array with a number on each of it's data fields, whereas the number is the character in it's ASCI form.
If you want to input the whole string, use it's entire (inputtext):
format(message, sizeof(message),"%s",inputtext);
For example.
inputtext[1] = second character..
and so on..
A string is basically an array with a number on each of it's data fields, whereas the number is the character in it's ASCI form.
If you want to input the whole string, use it's entire (inputtext):
format(message, sizeof(message),"%s",inputtext);
For example.