fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <stdbool.h>
  4.  
  5.  
  6.  
  7. int main(void)
  8. {
  9. int variable ;
  10. int i = 24 ;
  11.  
  12. _Bool t = true ;
  13.  
  14. (t) ? (variable = i) : 0;
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2244KB
stdin
Standard input is empty
stdout
Standard output is empty