fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int x=10;
  5. float y=3.0;
  6. if(x==y)
  7. printf("%d %d",x,y);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2152KB
stdin
Standard input is empty
stdout
Standard output is empty