13.07.2015 Views

DSP56xxx C Cross-Compiler User's Guide - Tasking

DSP56xxx C Cross-Compiler User's Guide - Tasking

DSP56xxx C Cross-Compiler User's Guide - Tasking

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

6–50Chapter 6CharacterdiouxcScanned asint, signed decimal.int, the integer may be given octal (i.e. a leading 0 is entered)or hexadecimal (leading ”0x” or ”0X”), or just decimal.int, unsigned octal.int, unsigned decimal.int, unsigned hexadecimal in lowercase or uppercase.single character (converted to unsigned char).s, S char * or _packed char * respectively, a string of non whitespace characters. The argument should point to an array ofcharacters or packed characters respectively, large enough tohold the string and a terminating NULL character.f floate, E float; [–]m.dddddde±xx or [–]m.ddddddE±xx, where thenumber of d’s is specified by the precision.g, G float; uses %e or %E if the exponent is less than –4 or greaterthan or equal to the precision; otherwise uses %f.n int *, the number of characters written so far is written into theargument. No scanning is done.p pointer; hexadecimal 32–bit value which must be enteredwithout 0x– prefix.[...] Matches a string of input characters from the set between thebrackets. A NULL character is added to terminate the string.Specifying []...] includes the ’]’ character in the set of scanningcharacters.[^...] Matches a string of input characters not in the set between thebrackets. A NULL character is added to terminate the string.Specifying [^]...] includes the ’]’ character in the set.% Literal ’%’, no assignment is done.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!