Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - C language: define a numerical value with four plastic elements, assign an initial value, and output the result?
C language: define a numerical value with four plastic elements, assign an initial value, and output the result?
# include & ltstdio.h & gt

int main(){

int i,a[4]={4,5,8,9 };

for(I = 0; I<4; i++)

printf("%d ",a[I]);

printf(" \ n ");

Returns 0;

}