#include <stdio.h> int main(void) { int a = 6; return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:5:14: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
printf("%p", (void*)a);
^
cc1: all warnings being treated as errors
Standard output is empty