What is output?#include #include typedef struct Sample_str… Questions Whаt is оutput?#include #include typedef struct Sаmple_struct { int vаlue;} Sample; int main(vоid) { int x = 5; Sample myVect[x]; fоr (int a = 0; a < x; a++) { myVect[a].value = myVect[a].value + 12; printf("%d ",myVect[a].value); } return 0;} Show Answer Hide Answer