Recommended
Chapter12 array-single-dimension
C_Arrays(3)bzxhgvxgxg.xhjvxugvxuxuxuxvxugvx.pptx
its arrays ppt for first year students .
Array In C++ programming object oriented programming
Computer Programming- Lecture 8
ppt on arrays in c programming language.pptx
PF Lecture 9.ppt hakakbshisokwb jaiksnsjomabhj
Array,string structures. Best presentation pptx
Unit - 2(part-2)_pointers & references.pptx
Unit - 2(part-1)_functions & it's Types.pptx
11. Programming(BS-phy6)-Lecture11+12 .pdf
Lecture#8 introduction to array with examples c++
DSA Lec-2 Arrays ADT FOR THE STUDENTS OF BSCS
Ch-11-Arrays.ppt-1.pptx eurhrbdhdbdhrhdhdh
introduction to Array and Function in c++.pptx
GDG On Campus Google Cloud Jams - Workshop(1).pdf
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
More Related Content
Chapter12 array-single-dimension
C_Arrays(3)bzxhgvxgxg.xhjvxugvxuxuxuxvxugvx.pptx
its arrays ppt for first year students .
Array In C++ programming object oriented programming
Similar to Array_C++_programming_example_and reviews2 Computer Programming- Lecture 8
ppt on arrays in c programming language.pptx
PF Lecture 9.ppt hakakbshisokwb jaiksnsjomabhj
Array,string structures. Best presentation pptx
Unit - 2(part-2)_pointers & references.pptx
Unit - 2(part-1)_functions & it's Types.pptx
11. Programming(BS-phy6)-Lecture11+12 .pdf
Lecture#8 introduction to array with examples c++
DSA Lec-2 Arrays ADT FOR THE STUDENTS OF BSCS
Ch-11-Arrays.ppt-1.pptx eurhrbdhdbdhrhdhdh
introduction to Array and Function in c++.pptx
Recently uploaded GDG On Campus Google Cloud Jams - Workshop(1).pdf
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Metabolic pathway in higher plants and there metabolism.pptx
Presentation: Open Pedagogy for Open EdTech
maxiosocialis quiz for class 7b.ppt.pptx
Alkali and Alkaline Earth Metals - Brief Description.pptx
Service Sovereignty in the Age of AI !!!
Reuse, Repurpose and Creating OER & Licence
Seed Production Technology in Maize.pptx
theories-of-management-2 (1).ppt Theories of Management | Principles of Manag...
Data Review Slides for TCS Strategic Planning
Unit 1_Visual Programming-BCA-Part 1.pdf
"Aspergillus: Habitat, Structure, Reproduction and Life Cycle"
NOVEL DRUG DELIVERY SYSTEMS (BP 704T ) Unit 5
TALIS Global Webinar Presentation_Andreas Schleicher.pdf
B.Com (NEP Syllabus) herbal nutrition Unit 1.pdf
Computer MCQ Question Bank in English for all Competitive Exams - Heetson Pub...
How to Manage Sales Team Reporting in Odoo 18 CRM
Manners and Etiquette-1 Powerpoint presentation
How to Manage Incoming Shipment in 1 Step in Odoo 18 Inventory
Array_C++_programming_example_and reviews2 1. 2. 3. 4. What is array? Its example in real life? Array is an indexed sequence of elements, all the same type. 5. 6. How to declare an array? Data type array name [size]; int array[4]; Initialize array int array [3] = {3, 4,5}; int array[3] ; array[0] = 3; array[1] = 4; array[2] =5; Accessing array For loop 7. 1. for(i=0;i<n;i++) { 2. for(j=i+1;j<n;j++) { 3. if(arr[i]>arr[j]) { 4. temp =arr[i]; 5. arr[i]=arr[j]; 6. arr[j]=temp; 7. } 8. } 9. } 1. int size = 5; 2. int array[size] = {4, 5, 1, 3, 9}; 3. temp=0; int i=0; 4. int j=size- 1; 5. while( i < j){ 6. temp = array[i]; 7. array[i] = array[j]; 8. array[j] = temp; i++; 9. j--; 10. } Sort ascending order 1. for(i=0;i<n;i++) { 2. for(j=i+1;j<n;j++) { 3. if(arr[i]<arr[j]) { 4. temp =arr[i]; 5. arr[i]=arr[j]; 6. arr[j]=temp; 7. } 8. } 9. } Sort descending order Reverse array 8. 9. 10. Practice what is the value of sum after this code executes? 1. int[][] matrix = {{1,1,2,2},{1,2,2,4},{1,2,3,4},{1,4,1,2}}; 2. int sum = 0; 3. int col = matrix[0].length - 2; 4. for (int row = 0; row < 4; row++) { 5. sum = sum + matrix[row][col]; 6. } 11. 12. Agenda - Watch video of passing array as parameter in Function - Review function definition and its example - Practice problem 13. 14. 15. 16. Example 1. #include <iostream> 2. using namespace std; 3. int addition (int a, int b) { 4. int r; 5. r=a+b; 6. return r; 7. } 8. int main () { 9. int z; 10. z = addition (5,3); 11. cout << "The result is " << z; 12. } 17. 18. Practices Write a program with function to find 3 largest number of an array. Array size: 8 Input: {7, 12, 9, 15, 19, 32, 56, 70}