Question: Calling functions by references Using references to allow functions to return many values (in/out variables) Problem Description Open replit.com IDE, create a new repl (project)

Calling functions by references Using references to allow functions to return many values (in/out variables) Problem Description Open replit.com IDE, create a new repl (project) and name it "Lab11Ex1". Use this project to write and run a C program that performs the following: . . . . Declares a variable named val of type float Prompts the user to enter a value and store it in val Print the value of val Declares a pointer that can point to a float, named vP and make it point to the location of the variable val Using the dereference operator, print the value of the variable pointed to by VP Print the memory address of val Print the address stored in VP Print the address of VP Prompts the user to enter another value and store it in a val using the pointer vP Print the value of val Double the value of val via the pointer vP Print the value of val Using the dereference operator, print the value of the variable pointed to by vP O O
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
