I used "using namespace std;" in my entire study in C++,so basically I don't understand something like std::out,please help me out.Let's say I have a code shown below,i want the two string to be the same when I compare them. 
    int main(void)
{
    using namespace std;
    char a[10] = "123    ";
    char b[10] = "123";
    if(strcmp(a,b)==0)
    {cout << "same";}
return 0;
}
 
     
     
     
    