Feb 24, 2011

24. Find the output.

void main()
{
int i=3, *j, k;
j = &i;
printf("%d\n", i**j*i+*j);
}


Answer: 
30