Control Instructions - Programming

Q1:

By default, the data type of a constant without a decimal point is int, whereas the one with a decimal point is a double.

A Yes

B Yes

ANS:A - Yes

6 is int constant.
6.68 is double.
6.68L is long double constant.
6.68f is float constant.