1.

Assume that the size of an integer is 4 bytes. Predict the output?#include <stdio.h>int fun(){puts(" Hello ");return 10;}int main(){printf("%d", sizeof(fun()));return 0;}(A) 4(B) Hello 4(C) 4 Hello(D) Compiler Error

Answer»


Discussion

No Comment Found

Related InterviewSolutions