Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - In C language, there are only 27 letters on the keyboard. What should I do to define an integer variable of 100?
In C language, there are only 27 letters on the keyboard. What should I do to define an integer variable of 100?
Defined by a one-dimensional array.

Therefore, the definition of 100 integer variable is:

int a[ 100];

The elements in the a array start from a[0] to a[99].