progs/example1.c
author cu
Mon, 09 Oct 2017 10:07:35 +0100
changeset 547 eae9a2e6ff28
parent 205 88416b7df38c
permissions -rw-r--r--
updated

void foo(int a, int b, int c) {
   char buffer1[6] = "abcde";
   char buffer2[10] = "123456789";
}

void main() {
  foo(1,2,3);
}