fork download
  1. /* this program will be used to compute the excercises from 5.1*/
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(void)
  6. {
  7. int i, j, k, l;
  8.  
  9. i = 2; j = 3;
  10. k = i * j == 6;
  11. printf("%d", k);
  12.  
  13. l = i * (j == 6);
  14. printf("%d", l);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
Standard output is empty