C++ Cannot Get Value Of Double Pointr Code Example
Example: double pointers C++
#include <stdio.h> int main(void) { int value = 100; int *value_ptr = &value; int **value_double_ptr = &value_ptr; printf("Value: %d\n", value); printf("Pointer to value: %d\n", *value_ptr); printf("Double pointer to value: %d\n", **value_double_ptr); }
Comments
Post a Comment