Is it necessary to specify f while initiating a float type variable.
float a =3455.67f;
If I declare and initiate it as
float a = 3455.67;
Then what will happen?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The documentation on
floatsays:This means that if you do
float a = 3455.67;then the compiler will refuse to implicitly convert thedoubleto afloat.