fork download
  1. #include <iostream>
  2. int main(int ac, char** av){
  3. int a = 5;
  4. int b = 2;
  5. float c;
  6. c = a / b;
  7. std::cout << a << b << c << std::endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 4956KB
stdin
Standard input is empty
stdout
522