Compiler 2014: Standard libraries
外观
Low-level access functions
malloc ... int getchar ( void ) int putchar ( int character )
Standard library functions
strcpy strcmp strcat ... printf scanf ...
Some remarks
- When implementing
printf
you should at least support these parameters: "%d", "%s", "%c", "%.nd" where 1<=n<=9. When implementingscanf
you should at least support these parameters: "%d".