Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#include <iostream>
#include <string>
#include <sstream>
#include <iterator>
#include <vector>
int main()
{
using namespace std;
string cumle = "Bir 1 iki 2 uc 3 dort 4";
istringstream giris(cumle);
vector<string> kelimeler;
copy(istream_iterator<string>(giris),
istream_iterator<string>(),
back_inserter<vector<string> >(kelimeler));
copy (kelimeler.begin (), kelimeler.end (),
ostream_iterator <string> (cout, "\n"));
}
std::string str = "turkhackteam";
str[0] = 'T';
printf("%c\n", str[0]);
printf("%s", str.c_str());
std::string str = "turkhackteam";
char *chararr = (char*)str.c_str();
chararr[0]-=32;
printf("%c\n", chararr[0]);
printf("%s", chararr);