Declare a integer variable x and initialise it with 73
Answers
Answered by
1
Answer:
You can define a variable as an integer and assign a value to it in a single declaration. For example: int age = 10; In this example, the variable named age would be defined as an integer and assigned the value of 10.
Answered by
2
int x = 73;
OR
int x;
x = 73;
Hope Helps You ✌️
Please mark as the Brainliest ‼️
Similar questions