write a q basic program take a number n as input from user and print the numbers from 1 to n
Answers
Answered by
0
Answer:
#include <stdio.h>
int main()
{
int i, n;
/* Input upper limit from user */
printf("Enter any number: ");
scanf("%d", &n);
printf("Natural numbers from 1 to %d : \n", n);
/*
* Start loop counter from 1 (i=1) and go till n (i<=n)
* increment the loop count by 1 to get the next value.
* For each repetition print the value of i.
*/
for(i=1; i<=n; i++)
{
printf("%d\n", i);
}
return 0;
}
Explanation:
make me as brilliant
Answered by
2
Answer:
Please refer to the attachment here is your correct answers PLZ mark me brainlist answer
Attachments:
Similar questions