v.c 220 B

12345678910111213141516171819202122232425262728
  1. void g(char* buf, int s)
  2. {
  3. buf[s] = s+1;
  4. }
  5. int f(int x)
  6. {
  7. return x + 2;
  8. }
  9. int main()
  10. {
  11. int s = 3;
  12. char buf[10];
  13. int x = f(s); //5
  14. g(buf, x);
  15. return buf[5]; //6
  16. }
  17. void interrupt()
  18. {
  19. }