I am learning C language. I installed and configurated everything to start coding
But when I try to use ampersand (&) in scanf my program doesn't compile:
scanf("%f", &x);
I am getting this error:
The ampersand () character is not allowed. The & operator is reserved for future use; wrap an ampersand in double quotation marks ("&") to pass it as part of a string.