Advertisement
Fahim_789

Print 2 numbers riverse(users)

May 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int num1,num2;
  5.     printf("Enter the first integer: ");
  6.     scanf("%d",&num1);
  7.  
  8.     printf("Enter the second integer : ");
  9.     scanf("%d",&num2);
  10.  
  11.     printf("Numbers are :%d %d\n",num2,num1);
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement