Initializing the elemets of an array with an initializer list

#include<stdio.h>


int main (void)
{
    int n[10] = {29, 8,19, 91, 28, 10, 19, 91, 0, 0 };
    int i;
    
    printf("%s%13s\n", "Element", "Value");
    
    for( i= 0; i <10;i++){
         printf("%7d%13d\n", i, n[i]);
         }
         
         
            
            system ("pause");
            return 0;
            }

No comments:

Post a Comment