diff --git a/Second_file b/Second_file new file mode 100644 index 0000000..beb387b --- /dev/null +++ b/Second_file @@ -0,0 +1,10 @@ +#include +void main() +{ +int n,i; +printf("Enter a Number"); +scanf("%d",&n); +printf("Natural Numbers upto %d are as follows\n",n); +for(i=0;i<=n;i++) +printf("%d",i); +}|