Computer Science, asked by anjum4030, 1 month ago

void main()
{
int Copper = 011 ||0x10;
printf("%d", Copper);​

Answers

Answered by mindfulmaisel
2

25 is the correct output

Explanation:

To find:

incorrect algorithm:

void main()

{

int Copper = 011 ||0x10;

printf("%d", Copper);​

correct algorithm:

main()

{

int copper=011|0x10;

printf("%d",copper);

}

When we run the above algorithm, we get the required algorithm, which is 25.

hence, 25 is the correct output

Similar questions