what's wrong with this, and .. can you not declare "char" variables?
#include <iostream>
int main()
{
int a = "* * * * * * * *\n";
std::cout << a;
return EXIT_SUCCESS;
}
thx
#include <iostream>
int main()
{
int a = "* * * * * * * *\n";
std::cout << a;
return EXIT_SUCCESS;
}
thx
Comment