Find mistakes in code

A prompt to accelerate your webdevelopment

Featured image

Prompt

Help me find mistakes in the following code .</p> </div> </div> ## Example answer

int main() { int x = 0; double y = 0.0; cout << x + y; return 0; }

  • No header file for cout, should include #include <iostream>
  • Missing semicolon after cout << x + y
  • Missing parentheses after main