fork(6) download
  1. #include <stdio.h>
  2.  
  3. char *c[] = {"Mahesh", "Ganesh", "999", "333"};
  4. char *a;
  5. char **cp[] = {c+3, c+2, c+1, c};
  6. char ***cpp = cp;
  7.  
  8. int main(void) {
  9. printf("%d %d %d %d ",sizeof(a),sizeof(c),sizeof(cp),sizeof(cpp));
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
4 16 16 4