C why is is & nit used in scan f fr string

C
/*
‘&’ is used to get the address of the variable. 
C does not have a string type, String is just an array of 
characters and an array variable stores the address of the 
first index location.
*/
Source

Also in C: