It has been 6 years since I have done any real programming at all, and I have lost most of my skill and lost my syntax and just plain old suck now. The only thing I have going for me is that I can get the logic part working if you guys can help me with the basic part of the program.
I am trying to make a counter that each digit in the counter can be alpha numeric. It would go from 0-9 and then from A-Z. I just want to know how to increment it in a loop and what I am doing wrong. It will probably be obvious to somebody who has some skill but this is my code... Please be gentle lol. The Error I'm getting is this its for this line
printf (c6);
and the complier is giving this error. invalid conversion from `char' to `const char*'
The error means that the printf() function takes as its first argument a const char *; however, you're passing a char (which is the variable C6). One fix would be: