#include <stdio.h>

main()
{
  int foo[2][3] = { 4, 8, 16, 5, 7, 9 } ;
  int bar[2][3] = { { 4, 8, 16 }, { 5, 7, 9 } };
  exit(0);
} /* main() */

