> An example call with scanf() to take just one character is
> char array_to_which_the_character_is_copied[some_length];
> scanf("%1c", array_to_which_the_character_is_copied[0]);
Actually, that should be (notice addition of &):
scanf("%1c", &array_to_which_the_character_is_copied[0]);
--
Dave Hylands
Vancouver, BC, Canada
http://www.DaveHylands.com/Message
Re: [AVR-Chat] use of scanf
2005-06-23 by Dave Hylands