underline the error (if any) in the following code and rewrite the correct code(consider header file (s) and getch() in each code.
Attachments:
![](https://hi-static.z-dn.net/files/dfc/214f4dd01a011c6b1703d06ad3b453e5.jpg)
Answers
Answered by
2
Error:-
cout>>z;
correct code:-
void main()
{
int p=20,s=10;
int z=p*s;
cout<<z;
}
Similar questions