Guess the output
#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");
  }
}

Posted on by