Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3.  
  4. int main()
  5. {
  6. int x = 5;
  7. if (x > 10)
  8. printf("X is greater than 10");
  9. else if (x < 10)
  10. printf("X is lesser than 10");
  11. else
  12. printf("x = 10");
  13. getch();
  14. return 0;
  15. }
  16.  
  17. int main() {
  18. printf("X is lesser than 10");
  19. getch();
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement