#passing-array-to-a-function
Read more stories on Hashnode
Articles with this tag
#include<iostream> using namespace std; void func(int *arr){ } void func(int arr[]){ } //both the way of passing a function are same int...