#include stdio.h

int main()
{
char str1[] = { 'H', 'e', 'l', 'l', 'o' };
char str2[] = "Hello";

printf("%ld,%ld", sizeof(str1), sizeof(str2));

return 0;
}

What is the output of the following code?

Posted on by