What will be the output of the following C code?
#include <stdio.h>
printf("%d", sizeof(strlen("HELLOWORLD")));
#include <stdio.h>
printf("%d", sizeof(strlen("HELLOWORLD")));A. Output, 4
B. Output, 10
C. Output, 16
D. Error, sizeof cannot evaluate size of a function
Answer: Option A

Join The Discussion