0
What can be replaced with using namespace std;
2 Respostas
+ 4
with "using namespace std;"
#include <iostream>
using namespace std;
int main() {
cout << "Hello" << endl;
}
_________________
without "using namespace std;"
#include <iostream>
int main() {
std::cout << "Hello" << std::endl;
}
+ 2
if you don't wanna use 'using namespace std;' then you need to std:: in each in every line in the cout and arrays without that std!