Computer Science, asked by varshaghule450, 1 month ago

write any two examples of valid declaration of variable in c++​

Answers

Answered by poonamchauhan4962
0

sorry yar mujhe maaf kar de

Answered by mohitwagh
6

Explanation:

Type Syntax

Variable declaration data_type variable_name; Example: int x, y, z; char flat, ch;

Variable initialization data_type variable_name = value; Example: int x = 50, y = 30; char flag = 'x', ch='l';

Similar questions