fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a = 10, b = 20;
  5.  
  6. int max = (a > b) ? a : b; // If a > b, max = a; otherwise, max = b
  7.  
  8. printf("The greatest number is %d\n", max);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
The greatest number is 20