07_function.c 315 B

12345678910111213141516171819202122232425262728293031
  1. #include <stdio.h>
  2. int myfunc(int x)
  3. {
  4. return x * x;
  5. }
  6. void vfunc(int a)
  7. {
  8. printf("a=%d\n", a);
  9. }
  10. void qfunc()
  11. {
  12. printf("qfunc()\n");
  13. }
  14. int main()
  15. {
  16. printf("%d\n", myfunc(3));
  17. printf("%d\n", myfunc(4));
  18. vfunc(1234);
  19. qfunc();
  20. return 0;
  21. }
  22. // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :