/* E03_F04_sampleQuestions 1
   Question 1
   P. Conrad   CISC105, Fall 2004 */

/* Which one could be the output? */

#include <stdio.h>

int main(void)
{
  int a[5]={3, 2, 5, 4, 8};
  printf("Here is the array: ");
  printf("%d",a[5]);
  printf("\n");
  return (0);
}

