Question: unsigned char a = 0x23; unsigned char b =0x45: printf(c=0x%x , a | b); What is printed ? Oc=0x23 Oc=0x23 O c=0x67 Oc=0x1 D unsigned

unsigned char a = 0x23; unsigned char b =0x45: printf(\"c=0x%x \",

a | b); What is printed ? Oc=0x23 Oc=0x23 O c=0x67 Oc=0x1 D

unsigned char a = 0x36

unsigned char a = 0x10; unsigned char b = 0x1; if (a & b) putchar ( 'T'); else putchar ('F');

What is printed? OF OT FT OTE D Question 10 unsigned char x = 0x21. y; y * * & 0x1:

what is the value of y 01 Question 11 unsigned char a = 0x10; unsigned char b = 0x1; if (a & b) putchar('T'); else putchar ('F'); What is printed ?

OF OT OFT O TE Question 12 unsigned char a=0x36 >> 1; printf(\"%d\", a); 27 28 30 e 36 D Question 13 unsigned char x = 0x21, y: y = x >> 1 :

what is the value of y now? O 16 O 17 O 0x21 0x1 D Question 14 unsigned char a = 0x10; unsigned char b = 0; if ( b ) putchar (\"T\"); else putchar ('F'); OTT OFF OT o F

unsigned char a = 0x10; unsigned char b = 0; if(alb) putchar ( 'T'); else putchar (\"F\"); What is printed ? OF OT O TE D unsigned char a - Ox24 >> 2; printf(\"%d\", a); what is printed? O 24 36 18

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!