fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a = 1;
  6.  
  7. int b = 5;
  8.  
  9. if(a&&b)
  10. {
  11. printf("1dogru\n");
  12. }
  13. else
  14. {
  15. printf("1dogru degil\n");
  16. }
  17.  
  18. if(a&b)
  19. {
  20. printf("2dogru\n");
  21. }
  22. else
  23. {
  24. printf("2dogru degil\n");
  25. }
  26. return 0;
  27. }
Success #stdin #stdout 0s 5272KB
stdin
45
stdout
1dogru
2dogru