fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void strPointerTest(const string* const pStr)
  5. {
  6. cout << *(pStr);
  7. }
  8.  
  9. int main() {
  10. string animals[] = {"cat", "dog"};
  11. strPointerTest(animals);
  12. return 0;
  13. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
cat