13. Please write a program that receives 1, then outputs number 1-9.
Template
#include <stdio.h>
int main(int argc, char *argv[]){
int i;
scanf("%d",&i); // DO NOT CHANGE // No need to use printf("Enter number:")
// your condition starts from here
return 0;
}
Input
1
Acceptable Output1
123456789
Acceptable Output2
1 2 3 4 5 6 7 8 9