fork download
  1. #include <stdio.h>
  2.  
  3. int main( void )
  4. {
  5. char str[] = "kitty on your lap";
  6. char* a;
  7. char** b;
  8.  
  9. a = str;
  10. b = &a;
  11.  
  12. putchar( *(b)[2] );
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout