ME-FT
closed

closed by
416 views
0 votes
0 votes
closed with the note: verified

consider the following function secret ().
 

unsigned char secret(unsigned char x,int y)

{

return ((x & 0x0F)<<y | (x & 0xF0)>>y);

 }

int main()

{   unsigned char x=100;

    printf(“ %u”,secret(x,4));

return0;

}



the output obtained corresponding to the function call secret(100,4) is _

closed by

Related questions