1D & 2D Arrays - TechAmbitionX Understanding 1D and 2D Arrays Arrays are like containers that hold multiple values. Dusray alfaaz mein, An array is similar to a variable, but instead of storing a single value, it holds multiple values of the same type. These values are stored in consecutive memory locations. Let's dive into 1D and 2D arrays ! 1D Arrays A 1D (one-dimensional) array is like a simple list of values stored in memory. Example: // 📂 This File can also be accessed through: https://github.com/BilalAhmadKhanKhattak/CppNotes/blob/main/Arrays/1dArray.cpp // find the max in 1D array..... o bhai sab! #include using namespace std; int main() { int arr[5] = {23,4,12,6,64}; // This is what we call 1D array int maxNum = arr[0]; // for now, I'm gonna set it to 23 (just for now) watch and learn // I'll use loop to find the max in the array. Loops through the a...
Comments
Post a Comment