What will be output of following c program?

			  		

Loading

โœช Choose the correct option.

What will be output of following c program?


#include
long unsigned static const ddlg(){
static const long unsigned a=0101;
return a;
}
int main(){
long number;
number=ddlg();
printf("%X",number);
return 0;
}

A. 41
B. 43
C. Compilation error
D. None of the above