Find the output of the following?#include <stdio.h>void main(){int a=10;switch(a){case 5+5:printf("Hello\n");default:printf("OK\n");}}
#include <stdio.h>int main(){int number = -10;printf(%d\n, sizeof(number));}
int main(){int a = 5;int b = 10;int c = a+b;printf("%i",c);}