C Programming Language Part 11 in Hindi | Array in C | 1D | 2D |3D Array | Array Types | PremnArya
DON’T CLICK THIS: https://bit.ly/2OFx7fE
#CProgrammingLanguagePart11inHindi #ArrayinC #OneDimensionalArray #TwoDimensionalArray #ThreeDimensionalArray #MultiDimensionalArray #PremnArya #PassingArrayElementtoaFunction #PointersandArrays
#1D #2D #3DArray #MultiDArray #ArrayTypes
About this video
Hello Everyone, I am PN Arya welcome to you on our YouTube channel.
This video explains about Programming in C Language in Hindi. Each topic explained with a programming example in Hindi.
The following Concepts Covered in this video:
1. Need of Array
2. One-dimensional Arrays
3. Two-dimensional Arrays
4. Three or Multi-dimensional Arrays
5. Passing Array Element to a Function
6. Pointers and Arrays
The need for Array: Before understanding array consider the following program;
main( )
{
int x;
x=5;
x=10;
printf(“\n x=%d”, x);
}
Output: x=10
The program print value of x is 10. Because x=10 value is the latest value and x=5 value is lost. Ordinary variables are capable of holding only one value at a time. If we want to store more than one value at a time in a single variable. For example, suppose we want to arrange the percentage of marks obtained by 100 students.
In this case, we have two options to store these marks in memory;
(1) Construct 100 variables to store the percentage of marks obtained by 100 different students, i.e. each variable containing one student marks.
(2) Construct one variable called an array capable of storing all hundred values.
--------------------------------------------------------------------------------------------------------------------------------
►For more information updates subscribe to our YouTube Channel:
/ @premnarya
------------------------------------------------------------------------------
Our some other videos playlist:
►Data Mining and Data Warehousing Complete Playlist
• Data Mining and Data Warehousing
►Basic Computer Fundamental in Hindi videos Playlist
• Basic Computer Fundamentals in Hindi
►Basic Computer Fundamental in English All Videos
• Basic Computer Fundamental in English
►Programming in C Language in Hindi videos Playlist
• Programming in C Language in Hindi
►C Programming Language in English All Videos
• C Programming Language in English
-----------------------------------------------------------------------------
►Follow us our social link for regular updates:
Facebook Page: / premnarya10
Twitter: / premnarya10
Instagram: / premnarya10