Hi.. I need help to answer the following question: 1) Write the following unstructured program segment instructured form: int row = 0 , col ; A: col = 0 ; if (col < n) goto B; goto A ; B: if ( row < n) goto C ; goto E ; C: if (mat [row] [col] == item) goto D ; col ++ ; if ( col < n) goto B; row ++ ; goto A ; D: cout << " item found " ; goto F ; E: cout << "item notfound " ; F: ; Hi.. I need help to answer the following question: 1) Write the following unstructured program segment instructured form: int row = 0 , col ; A: col = 0 ; if (col < n) goto B; goto A ; B: if ( row < n) goto C ; goto E ; C: if (mat [row] [col] == item) goto D ; col ++ ; if ( col < n) goto B; row ++ ; goto A ; D: cout << " item found " ; goto F ; E: cout << "item notfound " ; F: ;