Predict the output of the following code.
#include <stdio.h>
int main()
{
    int a=15;
    switch(a)
    {
        case 5+5+5:
                   printf("UNIVERSE\n");
                   break;
        default:
                printf("STAR\n");
    }
    return 0;
}

Posted on by