Question:What will be output of the following c program?
#include<stdio.h> int main(){ register xyz_123=91; auto pqr_123=991; const _1a1_=pqr_123+~xyz_123; printf("%d",_1a1_); return 0; }
A 900
B 999
C 899
D Compilation error
E None of these
+ AnswerC
+ Explanation
+ Report