Write output if '&' sign with variable name is given while printing the output
Answers
Answered by
10
Answer:
The & means that the function accepts the address (or reference) to a variable, instead of the value of the variable.
Explanation:
same as above
Answered by
2
The output will be the address of the variable when it will done with the C-language.
Explanation:
- '&' is used with the variable in scanf function and called as the address operator. It is used in scanf to take the value and store it with the help of the address of the variable.
- When the user use '&' in printf function to display the output with the name of the variable. Then it prints the address of the variable.
Learn more:
- Address operator: https://brainly.in/question/13105663
Similar questions