What will be the output of the following C++ code?
#include iostream 
#include string
using namespace std;
int main(int argc, char const *argv[])
{
char s1[] = "Welcome ";
char s2[] = "to Sookshmas";
char s3[] = s1 + " " + s2;
couts3;
return 0;
}


Posted on by