Thursday, February 3, 2011

Pointers



What is the output of the program? '
#include<stdio.h>
#include<conio.h>
void main()
{
int **i;
int *j=0;
i=&j;
clrscr();
if(NULL != i && NULL != *i)
printf("hello”);
getch();
}