You are on page 1of 1

#include <stdio.

h>
#include <stdlib.h>
int main()
{
int x[5]={10,20,30,40,50};
printf("%d",x[2]);
return 0;
}

You might also like