Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include<comutil.h>//for _bstr_t
#include<iostream>
using namespace std;//for iostream
int main()
{
BSTR bx = L"Hello ";
char* cx = "world"
_bstr_t x = bx;
bx += cx;
wcout<< bx;
cout<< cx<< endl;
wcout<< (BSTR)x<< endl;
cout<< (char*)x<< endl;
BSTR by = (BSTR)x;
char cy = (char*)x;
wcout<< by<< endl;
cout<< cy<< endl;
cout<< "there was shown some tehnics on using strings in ATL :)"<< endl;
return 0;
}