Write the output of the following program.
#include < string.h >
#include < iostream >
using namespace std;
intmain()
{
char string 1[] = "Computer";
char string2[] = "Science";
int result;
result = strcmp(string1,string2);
if(result 0)
{
cout=x'' String 1 : " << string 1<< " and String2"
}
if (result<0)
{
cout << " String 1 :" << string1<< " and String2
" << string2 << " Are Not Equal";
}
}