Question: When a variable is stored in memory, it is associated with an address. To obtain the address of a variable, the & operator can be

When a variable is stored in memory, it is associated with an address. To obtain the address of a variable, the & operator can be used. For example, &a gets the memory address of variable a. Let's try some examples. Write a C program addressOfScalar.c by inserting the code below in the main function. Questions: 1) Run the Cprogram, attach a screenshot of the output in the answer sheet. 2) Attach the source code in the answer sheet 2) Then explain why the address after intvar is incremented by 4 bytes instead of 1 byte. 1 // intialize a char variable, print its address and the next address 2 char charvar'0 3 | printf ("address of charvar- %p ", (void *) (&Charva r )); 4 | printf ("address of charvar - 1- %p ", (void *) (&Charvar - 1)); 5 | printf ("address of charvar + 1- %p ", (void *) (&Charvar + 1)); 7 // intialize an int variable, print its address and the next address 8 int intvar1; 9 | printf ("address of intvar- %p ", (void *) (&intvar)); 10 printf ("address of intvar -p ", (void *) (&intvar - 1) 11 printf ("address of intvar + 1 -Spln", (void *) (&intvar 1)): 12
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
