1.

#include <stdio.h>int main(){int i = 5, j = 10, k = 15;printf("%d ", sizeof(k /= i + j));printf("%d", k);return 0;}Assume size of an integer as 4 bytes. What is the output of above program?(A) 4 1(B) 4 15(C) 2 1(D) Compile-time error

Answer»


Discussion

No Comment Found

Related InterviewSolutions