What will be the output of the program ?
#include< stdio.h >
int main()
{
char str1[] = "Hello";
char str2[] = "Hello";
if(str1 == str2)
printf("Equal ");
else
printf("Unequal ");
return 0;
}
#include< stdio.h >
int main()
{
char str1[] = "Hello";
char str2[] = "Hello";
if(str1 == str2)
printf("Equal ");
else
printf("Unequal ");
return 0;
}
No comments:
Post a Comment