Multiple choice technology programming languages

#include main(){ int a=2; int *p=&a; print("%x\t",p); print("%x\t",*p++); print("%x\t",p); }

  1. someaddress value someaddress

  2. value value value

  3. syntax error

  4. compilation error

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The code uses print instead of printf, and main lacks a return type. These syntax errors will cause the compilation to fail.