which of the following is a not correct assignment statement\nint 13 = h;\ndouble f = 13 + 2.6;\nint a = 23;

which of the following is a not correct assignment statement\nint 13 = h;\ndouble f = 13 + 2.6;\nint a = 23;

which of the following is a not correct assignment statement\nint 13 = h;\ndouble f = 13 + 2.6;\nint a = 23;

Answer

Brief Explanations:

In programming, variable names must start with a letter, an underscore, or a dollar sign. In the statement "int 13 = h;", the variable name starts with a digit which is incorrect syntax. The other two statements follow proper assignment - variable 'f' is assigned the sum of an integer and a double, and variable 'a' is assigned an integer value.

Answer:

int 13 = h;