C4 Interpreterc-in-four-functions Β· in your browser
Ready
main.c10 lines Β· 179 chars
1
2
3
4
5
6
7
8
9
10
int main(int argc, char **argv) {
  int i;
  printf("argc = %d\n", argc);
  i = 0;
  while (i < argc) {
    printf("argv[%d] = %s\n", i, argv[i]);
    i = i + 1;
  }
  return 0;
}
$
argv[0]"./c4"argv[1]"hello"argv[2]"world"argv[3]"42"
console
β–‹
VM inspector
pcβ€”
spβ€”
bpβ€”
Aβ€”
opβ€”
cycβ€”
disassembly
compile to view bytecode
stack (top ↓)
run or step to view
symbols
β€”