Compiler 2015: Standard libraries
外观
Low-level access functions
malloc ... int getchar ( void )int putchar ( int character )
Standard library functions
strcpystrcmpstrcat... printfscanf...
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".