In this video, we are going to discuss about how we can pass 2D arrays to functions in C.
Summary:
To pass 2D array, you need name, row count, column count
func(name,rows,cols);
func(marks,3,2);
void func(int arr[3][2],int rows, int cols)
Array is always passed by reference.
Audio language : Hindi
In this course , we are going to cover all C concepts in simple and easy to understand terms.
This course will start from basics and later on we will cover advance topics that are important from interview point of view.
Github : https://github.com/TechCourses4u/C-La...
Programs :
https://github.com/TechCourses4u/C-La...