Answer to Question #261782 in C for reem

Question #261782

For each of the following, write a single statement that performs the indicated task. Assume that long integer variables value1 and value2 have been defined and that value1 has been initialized to 200000.

 

a) Define the variable lPtr to be a pointer to an object of type long.

b) Assign the address of variable value1 to pointer variable lPtr.

c) Print the value of the object pointed to by lPtr.

d) Assign the value of the object pointed to by lPtr to variable value2.

e) Print the value of value2.

f) Print the address of value1.

g) Print the address stored in lPtr. Is the value printed the same as the address of value1?


 

1
Expert's answer
2021-11-05T19:25:16-0400
#include<stdio.h>
int main(){
long int value1 = 200000, value2 ;
 long *lPtr;
  lPtr = &value1;
  printf("%d", *lPtr);
  value2 = *lPtr;
  printf("\n%d", value2);
  printf("\n%d", &value1);
  printf("\n%d", lPtr);


}

The address stored in lPtr is the same as the address of value1

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS