I just dont know why some codes do not work on solo learn... But works on the pc.. Take the code below as an example
#include <stdio.h> // THIS IS TO GIVE YOU A CLEAR UNDERSTANDING OF POINTERS AND POINTINT TO A POINTER // I REALLY HOPE THIS HELPS YOU OUT... E N J O Y int main() { //This is the declaration of the variable and pointers int a=78; int *b=NULL; int **c=NULL; int ***d=NULL; int ****e=NULL; //This is the definition of the variables and pointers b=&a; c=&b; d=&c; e=&d; //Output of the values of variables and pointers printf("\t\tThe value of a = %d\n\n",a); printf("\t\tThe value of b = %d\n\n",*b); printf("\t\ttThe value of c = %d\n\n",**c); printf("\t\tThe value of d = %d\n\n",***d); printf("\t\tThe value of e = %d\n\n",****e); return 0; }