
int main( ){int a={5,6,7};if (a==5)printf ("sookshmas");else if(a==6)printf ("beyond");elseprintf ("knowing");}
#include<stdio.h>void main(){char *p,c;c='%','&','*';p=&c;if(*p=='%'){printf("sookshmas");}else if(*p=='&'){printf("hello sookshmas");}else{printf("beyond knowing");}}