What will be the output of the program in 16-bit platform (Turbo C under DOS) ?
#include
int main()
{
printf("%d, %d, %d", sizeof(3.0f), sizeof('3'), sizeof(3.0));
return 0;
}
Answer: B
No answer description available for this question.