Question: c program Part 2: When a variable is stored in memory, it is associated with an address. To obtain the address of a variable, the

c programc program Part 2: When a variable is stored in memory, it

Part 2: 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: h rm tchsot f theet 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 | // ?ntialize a char variable, print its address and the next address 2 char charvar'a' 3 | printf ("address of charvar-%p ", (void *) (&ch arvar)); 4 | printf ("address of cha rvar- 1 = %p ", (void *) (&charvar - 1)); 5 | printf ("address of charvar + 1-%p ", (void *) (&charvar + 1)); 6 7 // intialize an int variable, print its address and the next address 8 | int intvar = 1; 9 | printf ("address of intva r-%p ", (void *) (sintvar)); 10 | printf ("address of intva r - 1 %p ", (void *) (aintvar - 1)); 11 | printf ("address of intva r + 1 = %pln", (void *) (Gintvar + 1))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!