fork download
  1. #include <iostream>
  2.  
  3. void cmp (char const *string)
  4. {
  5. std::cout << std::boolalpha << (string == "test1");
  6. }
  7.  
  8. int main() {
  9. cmp("test1");
  10. return 0;
  11. }
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
true