pabloliva87

Ej10Chapter20C++

Aug 19th, 2013
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(void)
  4. {
  5.     std::string s1("Hola");
  6.     std::string s2("HolaMundo");
  7.  
  8.     std::cout << s1.compare(0, 4, s2, 0, 5) << std::endl;
  9.     std::cout << s2.compare(0, 4, s1) << std::endl;
  10.     std::cout << s2.compare(0, 5, s1.c_str()) << std::endl;
  11.  
  12.     return EXIT_SUCCESS;
  13. }
Add Comment
Please, Sign In to add comment