Predict the output

#include<stdio.h>
void main()
{
   int a=4;
   switch (a%3) 
   {
    case 0:printf("Sookshmas");
           break;
    case 1:printf("Beyond knowing");
           break;
    case 2:printf("Play quiz");
            break;
   }
}

Posted on by