#include <stdio.h> int main() { int p = 1, q = 2, r = 3; int *p1 = &p, *p2 = &q, *p3 = &r; int **p4 = &p1; //-Reference *p4 = p2; }
p4 points to p2
Previous Question Next Question
Your comments will be displayed only after manual approval.