1int breakfast(int x)
2
3{
4 using namespace std ;
5 cout <<"How many calories did you at breakfast and before lunch?";
6 cin <<x<< ;
7 return 0;
8{
This is the first program I am trying to write ever. Please excuse me if this is a very simple question. When I compile I am using this as a forward declaration. When I compile i get an compile error on line 6.error: no match for 'operator<<' in 'std::cin << x'|