int a = -2; // a is 3tored at address 101 int b = 35; // b is stored at address 189 // pl is stored at address 227 // p2 is stored at address 285 // pp is stored at address 305 int *pl=&a; int *p2 =...


İN C programming


int a = -2;<br>// a is 3tored at address 101<br>int b = 35;<br>// b is stored at address 189<br>// pl is stored at address 227<br>// p2 is stored at address 285<br>// pp is stored at address 305<br>int *pl=&a;<br>int *p2 = &b;<br>int **pp<br>= sp2;<br>*pl = *p2 + **pp;<br>p2=p1;<br>b= *p2+ **pp;<br>What will be the final values of the following expressions when the code listed<br>above is executed (Fill the table below):<br>ExpressionValue<br>ExpressionValue<br>a<br>*p2<br>dd.<br>&a<br>**pp<br>&b<br>pp<br>p1<br>p2<br>&p1<br>&p2<br>*p1<br>

Extracted text: int a = -2; // a is 3tored at address 101 int b = 35; // b is stored at address 189 // pl is stored at address 227 // p2 is stored at address 285 // pp is stored at address 305 int *pl=&a; int *p2 = &b; int **pp = sp2; *pl = *p2 + **pp; p2=p1; b= *p2+ **pp; What will be the final values of the following expressions when the code listed above is executed (Fill the table below): ExpressionValue ExpressionValue a *p2 dd. &a **pp &b pp p1 p2 &p1 &p2 *p1

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here