# test switch, is it ever implemented using jump tables? # Yes, it most certainly is! HOORAY! use stdio.h use stdlib.h go(int to) switch to 0 printf("hello\n") 1 printf("world\n") 2 printf("please\n") 3 printf("use\n") 4 printf("a\n") 5 printf("jump\n") 6 printf("table!\n") int main(int argc, char *argv[]) int to = atoi(argv[1]) go(to) return 0