1 #include <stdio.h> 2 3 #define MAX 10 4 5 int main ( void ) { 6 7 int x, array[MAX]; 8 array[4] = 1; 9 10 x = array[4]; 11 12 printf("%d\n", x); 13 14 return 0; 15 }
9511_workbooksolved exercises from algorithms & programming I (9511) prof. Cardozo |