Question: Within a file named Program.c , write a C program whose main function declares an char variable named c , and assigns the value '@'
Within a file named Program.c, write a C program whose main function
- declares an char variable named c, and assigns the value '@' to that variable
- declares a pointer variable named q
- assigns the value of variable q to be the address of variable c
- using the dereferencing operator and the variable q, prints the value of the variable to which q points (i.e., prints the value of variable c)
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
