so im begining some project, and to try to check my work im trying to print out results as of point x to see whats going on. I just started and im already stuck, and I cant find any reason why I am getting an error.
Here im trying to create and array, all blank, then print out all the elements within the array.
#include <stdio.h>
int main()
{
unsigned char imgSet[10] = {0} ;
printf('%c', imgSet[] );
}