progs/example1.c
author cu
Tue, 03 Oct 2017 14:01:09 +0100
changeset 542 02e4a86dd05a
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);
}