asked 28.4k views
1 vote
Create a single line comment before you define your variables that says ""Variable Definitions"".

asked
User Flipke
by
8.4k points

1 Answer

6 votes

Answer:

// Variable Definitions

int a=67;

float b=78.8797;

Explanation:

For creating a single line comment we use // slash. It is used for making the comment in the program. In this we made a comment with help of // after that we create a two variable i.e a and b of integer and float type.

answered
User MelMed
by
8.2k points

No related questions found