Question: A. Consider the following C program segment. for (i = 1; i
A.
Consider the following C program segment.
for (i = 1; i <= n; i++) {
for (j = 1; j <= n; j++)
if (x [i] [j] !=0)
goto reject;
printIn (First all-zero row is:, i);
break;
reject:
}
Rewrite this code without gotos in one of the following languages: C, C++.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
