#include <stdio.h>

int main() {
int a=10;
int *p=&a;
int **q=&p;
int ***r=&q;
int **t=&p;
printf("%d\n%d\n%d\n%d\n%d",a,*p,**q,***r,**t);}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: