0
Why in a scanf() & operator is used?
2 Antworten
+ 2
The & sign before the variable name is the address operator. It gives the address, or location in memory, of a variable. This is needed because scanf places an input value at a variable address.
0
Thanks