Javatpoint Logo

Mistake in the program.this located in below link

By: Ravibh*** On: Tue Sep 12 12:23:31 IST 2017     Question Reputation0 Answer Reputation0 Quiz Belt Series Points0  0Blank User
https://www.javatpoint.com/c-pointer-to-pointer

in above location, there is a pointer to pointer example program displayed. in the program, the bottom of printf statement (last statement) has a mistake.

dislplayed statement is == printf("Value of **p2 variable is %d \n",**p);

but correct statement is ===printf("Value of **p2 variable is %d \n",**p2);

the last p is replaced with p2.
Up0Down