fork download
  1. #include <stdio.h>
  2.  
  3. void func(int **p) {
  4. printf("Pointer is at %p\n", (void *)p);
  5. }
  6.  
  7. int main(void) {
  8. int *p;
  9. func(p);
  10. func(&p);
  11. int **pp = &p;
  12. func(&pp);
  13. return 0;
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:9:8: error: passing argument 1 of 'func' from incompatible pointer type [-Werror]
   func(p);
        ^
prog.c:3:6: note: expected 'int **' but argument is of type 'int *'
 void func(int **p) {
      ^
prog.c:12:8: error: passing argument 1 of 'func' from incompatible pointer type [-Werror]
   func(&pp);
        ^
prog.c:3:6: note: expected 'int **' but argument is of type 'int ***'
 void func(int **p) {
      ^
cc1: all warnings being treated as errors
stdout
Standard output is empty