test.cpp 158 B

12345678910
  1. #include"test.h"
  2. #include <iostream>
  3. using namespace std;
  4. int showChar(const char* c)
  5. {
  6. cout<<"This is C++ program!!!!"<<endl;
  7. cout<<c<<endl;
  8. return 0;
  9. }