Writes that count is an undeclared identifier ...
#include "stdafx.h" #include <iostream> int _tmain(int argc, _TCHAR* argv[]) { count << "Hello World"; return 0; }
int _tmain(int argc, _TCHAR* argv[])...">
Writes that count is an undeclared identifier ...
#include "stdafx.h" #include <iostream> int _tmain(int argc, _TCHAR* argv[]) { count << "Hello World"; return 0; }
Probably, instead of count
should be std::cout
.
I will not keep silent !!! count must be a variable, and cout << endl;
Source: https://ru.stackoverflow.com/questions/71230/
All Articles