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

User Flipke
by
5.6k 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.

User MelMed
by
5.4k points