Find the output of this program

int main()
{
char str1[] = { 'H', 'e', 'l', 'l', 'o' };
char str2[] = "Hello";
printf("%d,%d", sizeof(str1), sizeof(str2));
return 0;
}

Posted on by