fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int j = 65 ;
  6. printf ( "j >= 65 ? %d : today", j ) ;
  7. return 0 ;
  8. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
j >= 65 ? 65 : today