Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // print natural numbers in reverse use for loop//
- #include<stdio.h>
- int main()
- {
- int n,i;
- scanf("%d",&n);
- for (i=1;i<=n;i++)
- {
- printf("%d",n+1-i);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement