Multiple choice void main() { int x; x=sizeof(!7.8); printf("%d",x); } 4 2 8 1 10 Reveal answer Fill a bubble to check yourself B Correct answer Explanation ! is negation operator and it returns either integer 0 or 1. So, !7.8 = 0, and 0 is integer number and size of integer data type=2.