C | Operators | Question 8

Last Updated :
Discuss
Comments
C
#include <stdio.h>
int main()
{
    //Assume sizeof character is 1 byte and sizeof integer is 4 bytes
    printf("%d", sizeof(printf("GeeksQuiz")));
    return 0;
}
GeeksQuiz4
4GeeksQuiz
GeeksQuiz9
4
Compile-time error
Tags:
Share your thoughts in the comments