What will be output of the following program?#include <stdio.h>int main(){int i = 5;printf("%d", (++i)++);return 0;}
#include<stdio.h>int main(){float a=0.7;if(0.7>a)printf("Hi\n");elseprintf("Hello\n");return 0;}
What will be the output of the following code snippet?numbers = (4, 7, 19, 2, 89, 45, 72, 22)sorted_numbers = sorted(numbers)odd_numbers = [x for x in sorted_numbers if x % 2 != 0]print(odd_numbers)