Assume that a character takes 1 byte. Output of following program?
#include
int main()
{
char str[20] = "GeeksQuiz";
printf ("%d", sizeof(str));
return 0;
}
Answer: C
No answer description available for this question.