progs/example1.c
author cu
Fri, 27 Oct 2017 23:57:21 +0100
changeset 558 86334134abe5
parent 205 88416b7df38c
permissions -rw-r--r--
updated cw

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

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