Hello to everyone,
this is my first post of many to come :-)
I was looking for a solution for the following program.

Code:
  main()
{
    int **ptr;
    int i;
    ......
    .....
    printf ("i = %d \n",i);

}
without assigning anything to the interger variable, we have to get the print statement to print
a value (say 10),

How to assign address of a variable to a pointer to a pointer???

Thanks
MAx