The below questions are very interesting and amazing questions. So please do try it.
QUESTION 1
int a=5,*b=&a;
printf("%d",a**b);
QUESTION 2
if n=3
then a[++n]=n++;
whats the index of a[n] and value of n....
QUESTION 3
how many tyms will this loop be executeed :
char c1='a';
while(c1>='a' && c1<='z')
{
c1++;
}