C++标准输出流

// C++标准输出流
#include <iostream>

using namespace std;

int main() {
   char str[] = Hello C++;

   cout << Value of str is :  << str << endl;
}

相关文章

#include <iostream> using namespace std; int mai...
#include <iostream> using namespace std; int mai...
// #include <iostream> using namespace std; int...
#include <iostream> #include <string> using...
#include <iostream> #include <cstring> usin...
#include <iostream> using namespace std; int mai...