What is the output of this code 
#include <iostream>
#include <string>
using namespace std;
int main ()
    {
        string mys;
        char mya[20]= "Kulkarni";
        mys = mya;
        cout << mys << '\n';
        return 0;
    }

Posted on by