Advertisement
Guest User

mudabbir

a guest
Nov 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a=15;
  6. int b;
  7. b=a;
  8. printf("%d",b);
  9. printf("\n");
  10. b/=a;
  11. printf("%d",b);
  12. getch();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement