i'm trying to print the elements of my array but am getting 4210784 as the result can someone tell me where i'm going wrong with this and what is actual happening.

Code:
#include <stdio.h>

int ray[100];

main()
{ 

  printf("%i\n",(ray));
  getchar();
};