Find error if any
void main()
{
int a = 15;
float b = 10;
char cha = 'a';
char chb = 'b';
do{
a += b;
a = a * b / 4;
cout << a << b / a << endl
cout << cha;
for (int i = 0; i<20; i++); {
cout << i;
}
} while (a = <1000)
};
Answers
Answered by
1
char not come cha will come
Similar questions