Quote:
Originally Posted by Pat McCarthy
It was. Thanks.
Now how can I use the char value?
I tried:
printf("%c", buffer);
But that printed out an an arrow pointing up. 
|
The result of sprintf is a null, '\0', terminated string.
printf("%s", buffer);
printf("%c", buffer[0]);
would print the first char
Eugene