What will be the output of the following code?int main(){structure cl{int items;char name[30];}a;strcpy(a.name, "psg");a.items=30;printf("%s", a.name);return 0;}
import arraya = [4, 6, 8, 3, 1, 7]print(a[-3])print(a[-5])print(a[-1])