Question: using C program Write a while loop that prints 1 to userNum, using the variable i. Follow each number (even the last one) by a
using C program
Write a while loop that prints 1 to userNum, using the variable i. Follow each number (even the last one) by a space. Assume userNum is positive. Ex: userNum-= 4 prints: #include int main(void) { int userNum = 0: int i = 0: userNum = 4: //Assume positive /*Your solution goes here */ printf(" "): return 0: }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
