Question:What will be output if you will compile and execute the following c code?#include<stdio.h>int main(){ char c='0'; printf("%d %d",sizeof(c),sizeof('0')); return 0;}
A 1 1 B 2 2 C 1 2 D 2 1 E None
+ AnswerC
+ Report