c. Write the programming statements for the following:
i. To declare three variables a, b, c of the Integer type.
ii. To declare a variable a of Integer type, b of String type and c of Single type
Answers
Answered by
2
Your Answer:
i) int a,b,c;
ii) int a;
String b,c;
Similar questions