文档介绍:Lab 3 Conditions OBJECTIVES pleting this experiment, you will be able to: ?U se expressions and conditional operators ? Use logic operators ?U se if structure and if-else structure ? Use switch structure PROCEDURES PART 1 Understanding the difference between character and interger(include Decimal, Octal and Hexdecimal). /*Write down the display result through reading program, then verify byrun this program. */ 1. #include <> void main() { char ch=0x31; printf("%d\n",ch); /* ____49_______*/ printf("%o\n",ch); /* _____61_______*/ printf("%x\n",ch) /* _____31_______*/ printf("%c\n",ch); /* _____1_______*/ }2. #include <> void main() { int ch= 65; printf("%d\n",ch); /* _____65______*/ printf("%o\n",ch); /* ______101______*/ printf("%x\n",ch) /* _______41_____*/ printf("%c\n",ch); /* ________A____*/ } S ummarize the features of character and integer in your words. —————————————————— PART 2 If Structure. This program implement the following function: find out which one is biggest among a,b and upplement the blank with aorborc. A. if(a>b && a>c) max=___ a _____ else if(b>c) max=____ b ____ else max=___ c _____ B. if (a>b) if(a>c) max=____ a __ else max=__ c ____ else if(b>c) max=___ b _____ else max=___ c ______ Please input the value of a,b,and c through keyboard ,output the maxvalue .Supplement the two parts of program asa whole C program,pile and run it in Tu