What will be the output of the program?
#include stdio.h
int main()
{
int i = 4, j = 10, k = 20;
printf("%d ", sizeof(k /= i + j));
printf("%d", k);
return 0;
}


Posted on by