Using #define for array sizes
We often use the #define to give the sizes of arrays.
#define SSIZE 39
#define GSIZE 5
main ( )
{
int score [SSIZE] ,
gradeCounter [GSIZE] ;
}
Previous slide
Back to first slide
View graphic version