Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include 
    printf("%d", sizeof(strlen("InterviewMania")));
    1. Error, sizeof cannot evaluate size of a function
    2. Output, 16
    3. Output, 4
    4. Output, 10
    5. None of these
Correct Option: C

Output, 4



Your comments will be displayed only after manual approval.