fork download
  1. #include<stdio.h>
  2. #include <string.h>
  3. int foo() {
  4. char blah[] = "fizzbuzz";
  5. printf("%s\n", blah+4);
  6. return 0;
  7. }
  8. int main()
  9. {
  10. foo();
  11. return 0;
  12. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
buzz