Question: 10. Write the following C statements: a. Declare an integer variable named count and initialize it to zero. b. Declare a pointer to an integer
10. Write the following C statements: a. Declare an integer variable named count and initialize it to zero. b. Declare a pointer to an integer data type named ptr count. ptr count. c. Make ptr count "point to" count by assigning the address of count to d. the value stored in count by dereferencing ptr count. Dereferencing means use the indirection operator. Complete the printf statement below by filling in the missing argument. stored in ptr count s%d n", count, print ("Value stored in count 3%d, valu
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
