In the following program show the configuration of all the


In the following program, show the configuration of all the variables and the output.

#include

void main(void)

{

int a;

int* p;

int** q;

a = 14;

p = &a;

q = &p;

printf("%d\n", a);

printf("%d\n", *p);

printf("%d\n", **q);

printf("%d\n", p);

printf("%d\n", q);

}

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: In the following program show the configuration of all the
Reference No:- TGS0661035

Expected delivery within 24 Hours