I have an array of ints, denoted as int* myInts[100];
When I try to print the 0th index like so,
printf("%d\n",myInts[0]);
I get the following compiler warning:
warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘int *’ [-Wformat=]
Why is this?