#include <stdio.h> int main(void) { char* pointer[]; // your code goes here return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:4:8: error: array size missing in ‘pointer’
char* pointer[];
^~~~~~~
prog.c:4:8: error: unused variable ‘pointer’ [-Werror=unused-variable]
cc1: all warnings being treated as errors
Standard output is empty