#include stdio.henum birds {SPARROW, PEACOCK, PARROT};enum animals {TIGER = 8, LION, RABBIT, ZEBRA};int main(){enum birds m = TIGER;int k;k = m;printf("%d\n", k);return 0;}
#includeiostreamusing namespace std;int main(){int x = 8;auto check = []() - bool{if(x == 0)return false;elsereturn true;};coutcheck()endl;return 0;}
#include stdio.hint main() {char c;int lowercase_vowel, uppercase_vowel;printf("Enter an alphabet: ");scanf("%c", &c);lowercase_vowel = (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u');uppercase_vowel = (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U');if (lowercase_vowel || uppercase_vowel)printf("%c is a vowel.", c);elseprintf("%c is a consonant.", c);return 0;}
public class Solution{public static void main(String[] args){short x = 20;x = x * 10;System.out.print(x);}}