I cannot the output for this code to work. HELP.
#include <stdio.h>
#include <string.h>
int main()
{
const char *x = “Hellothere”;
const char *y = “Hithere”;
printf(“%s%n%s%snn”, “x = “, “y = “, y);
printf(“%s%2dn”,”strcmp(x,y,)=”, strcmp(x, y));
printf(“%s%2dn”, “strcmp(x,y,1)=”, strcmp(x, y,1));
printf(“nnn”);
return 0;
}
Expert Answer
An answer will be send to you shortly. . . . .