Page 1 of 1

What will be output of the following code?

Posted: Thu Jul 14, 2022 9:05 am
by answerhappygod
#include<stdio.h>
int main()
{
printf("%d\t",sizeof(6.5));
printf("%d\t",sizeof(90000));
printf("%d",sizeof('A'));
return 0;
}
a) 8 4 2
b) 8 4 2
c) 8 4 4
d) 8 4 3