fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int a=3;
  6. if(a=2)
  7. printf("T");
  8. else
  9. printf("F");
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4492KB
stdin
Standard input is empty
stdout
T