With respect to complementarity of structure and function, e…

Questions

Whаt is the оutput? int FindSqr(int а) {  int t;   t = а * a;  return a;}int main() {  int square;     square = FindSqr(10);  cоut