C Language Q & A #8
How do I define “char” to my system ?
- To use a variable in the C language, you have to give its name and data type first. For a character variable named count, you could write
char count;
Now you could use the variable count in expressions where you need a character-type variable.