University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

libpas2100.c 166B

12345678910111213141516
  1. #include <stdio.h>
  2. void write_char (int c)
  3. {
  4. printf("%c", c);
  5. }
  6. void write_int (int n)
  7. {
  8. printf("%d", n);
  9. }
  10. void write_string (char *s)
  11. {
  12. printf("%s", s);
  13. }