Answers for "scanf in c for string"

0

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

/*
‘&’ 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.
*/
Posted by: Guest on June-02-2020

Browse Popular Code Answers by Language