Question: In C programming, how do you go from loops to not loops? For example, how would you rewrite this void main () { int number[30];
In C programming, how do you go from loops to not loops?
For example, how would you rewrite this
void main () { int number[30]; int i, j, a, n; printf("Enter the value of N "); scanf("%d", &n); printf("Enter the numbers "); for (i = 0; i < n; ++i)
not in loops? Such as using if statements
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
