#include int main (void) { /* creates a 10-element array */ int ns[10]; int i; for (i = 0; i < 10; i--) { ns[i] = i; } return (0); }