What will be the output of the following code snippet?#include <stdio.h>void solve() {int a[] = {1, 2, 3, 4, 5};int sum = 0;for(int i = 0; i < 5; i++) {if(i % 2 == 0) {sum += *(a + i);}else {sum -= *(a + i);}}printf("%d", sum);}int main() {solve();return 0;}
#include <stdio.h>int main(){int a=15;switch(a){case 5+5+5:printf("UNIVERSE\n");break;default:printf("STAR\n");}return 0;}
#include<stdio.h>void solve(){int a = 8;int res = a++ + ++a + a-- + --a;printf("%d", res);}int main() {solve();return 0;}