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

Posted on by