Identify the errors in the following code segments :
int main ( )
{ cout << "Enter two numbers" ;
cin >> num >> auto;
float area = Length * breadth ; }
Answers
Answered by
0
float area = num * auto;
Similar questions