Multiple choice void main() { volatile int a=12; printf("%d", a); } Can not predict 12 Garbage value Compiler error Semantics error Reveal answer Fill a bubble to check yourself A Correct answer Explanation You can not predict the value of volatile variable because its value can be changed by any microprocessor interrupt.