Question: Part B Debug Program 1: Total Mark: 02 main() { char ch = 'r'; boo isVowel = false; if(ch=='a'ch=='A'ch=='e'ch=='E'ch=='i'ch=='I' ch=='o'ch=='O'ch=='u'ch=='U') { isVowel = true; if
Part B Debug
Program 1: Total Mark: 02 main() { char ch = 'r'; boo isVowel = false; if(ch=='a'ch=='A'ch=='e'ch=='E'ch=='i'ch=='I' ch=='o'ch=='O'ch=='u'ch=='U') { isVowel = true; if (isVowel == true) printf("%d is a Consonant", ch); else printf("%d is a Vowel", ch); } a. r is a constant b. r is a vowel c. none of the above Program 2: Total Mark: 02 main() { int num, rem, reverse_num, temp, start = 70, end = 100; for(num=start;num=end;num--) { temp=num; reversenum=0; while(temp) { rem=temp%10; temp==temp/10; reverse_num=reverse_num*10+rem; } if(num=reverse_num) printf("%c ",num); } } a. 90 80 90 100 b. 77 88 99 c. 72 74 76 78 80 82 84 86 88 90 92 94 96 98 d. 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 e. None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
