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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started