Guest User

Untitled

a guest
Feb 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // In case of using char
  2. void printArray(const char arr[], const size_t arraySize);
  3. void printArray(const char* arr, const size_t arraySize);
  4. void printArray(const char* arr[], const size_t arraySize);
  5.  
  6. // In case of using int
  7. void printArray(const int arr[], const size_t arraySize);
  8. void printArray(const int* arr, const size_t arraySize);
  9. void printArray(const int* arr[], const size_t arraySize);
Add Comment
Please, Sign In to add comment