I have a following line in C:
printf("size of sizeof is %d ", sizeof(printf("lol! ")));
Am I getting the size of a function pointer here?
Here, sizeof evaluates the return type of printf. (Here an int)
sizeof
printf
int
2.1m questions
2.1m answers
60 comments
57.0k users