Could anyone explain about scanf using &?
What are the different between string and &string?
char string[20];
scanf( "%s" , string );
However, the following seems to work too,
scanf( "%s" , &string );
What are the different between string and &string?
char string[20];
scanf( "%s" , string );
However, the following seems to work too,
scanf( "%s" , &string );