fork download
  1. #include <stdio.h>
  2. void foo(int n) {
  3. if (!n) {}
  4. foo(n>>1);
  5. printf("%d", n%2);
  6. }
  7. int main(void) {
  8. char ch[]={'a','b','c','d','e'};
  9. printf("%d", sizeof(ch));
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
5