1 min to read
Find mistakes in code
A prompt to accelerate your webdevelopment
Prompt
Help me find mistakes in the following code
int main()
{
int x = 0;
double y = 0.0;
cout << x + y;
return 0;
}
cout
, should include #include <iostream>
cout << x + y
main
Comments