Q. What will be output if you will compile and execute the following c code?
Code:
void main(){
int a=25;
clrscr();
printf(“%o %x”,a,A.;
getch();
}
β
Correct Answer: (A)
31 19