Identify and correct the errors in each of the following. [Note: There may be more than one error in each piece of code.]
a) if (age >= 65);
puts("Age is greater than or equal to 65");
else
puts("Age is less than 65");
b) int x = 1, total;
while (x <= 10) {
total += x;
++x;
}
c) While (x <= 100)
total += x;
++x;
d) while (y > 0) {
printf("%d\n", y);
++y;
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.