Pointer_1.3

#include <stdio.h>
int main (void)
{
    int *i,**j,k=7;
    i=&k;
    j=&i;
    printf("%d\n",*i);
    printf("\n");
    system("pause");
    return 0;
}

This is the output:
7

0 comments:

Post a Comment