#include <iostream> #include <string> int main() { std::string Navn = "Ole Peter"; std::cout << "Navn: " << Navn << std::endl; Navn += " Hansen"; std::cout << "Navn: " << Navn << std::endl; std::string S; std::string::size_type n = Navn.find_last_of(" "); S = Navn.substr(n + 1); std::cout << "Efternavn: " << S << std::endl; }
Nej tak ..tal igen
Nej tak ..tal igen Ikke forstået!