fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5.  
  6. int n, a, k;
  7. float x;
  8.  
  9. // 4.(a)
  10. n = 1;
  11. a = 1;
  12. printf((a > n && n > 0) ? "Good!" : "Hello!");
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Hello!