Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. int a,i;
  8.  
  9. printf("Enter an integer value:\n");
  10.  
  11. scanf("%d",&a);
  12.  
  13. for(i=a;i>=1;i--){
  14.  
  15. printf("%d\n",i);
  16. }
  17.  
  18. return 0;
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement