Generation

generate functionSat, 12 Nov 2022

Pointer points to integer pointer pointing to another pointer that is pointing to another pointer

int *p, **pp; int ***ppp = &pp; pp = &p; p = (int*) 0x1000; *p = 5; **pp = 6; ***ppp = 7;

Want to kickstart your project?Use the new AI Studio to create your code