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");
    }
}


Posted on by