printing filtered array content – Computer Sir Ki Class

Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  

Login
[lwa]



Code Learning #CPP#3095 siteicon   siteicon   siteicon  

printing filtered array content

Demonstrating how to print the filtered array content.

Learning Objectives

  • Getting specific data out from an array based on a condition called the filter condition.

Source Code

TC++ #3095

 

Source Code

Alternate (?) :

Run Output

32 44 99

Code Understanding

int ar[]={32,10,19,44,99}; //An array with initialised integer values/

for(int i=0;i<5;i++) //loop to traverse the array terms one by one from index 0

if(ar[i]>30) cout<<ar[i]<<” “;
With in if is the filter condition. This can be simple condition as given here or it can be a complex condition returned from a function. Once the condition is met here we are printing the filtered data.

Notes

  • The filter condition can also be returned from a complex condition returned via a selection statement, a series of loops or a function return. Aim is to select specific members of the array which are meeting the criterion.
  • The filtered output may stored in a secondary array.


Suggested Filename(s): arr-filt.cpp



Share

sunmitra| Created: 27-Jan-2018 | Updated: 28-Jan-2018|






×
Introductory Sessions Beginning to Program Tokens Keyword and Identifiers Data Types Variables and Constants Operators Simple User Input Building Expressions and Formulas Simple Real World Problems Simple If and If Else Multiple-Nested-Ladder of If Else Switch case selection Simple Loops Tricks in Loops - break continue scope Loop Applications - Handling numerals Series printing loops Nested Loops Pattern printing loops Number Varieties and Crunches String Handling (Null Terminated) Strings - string class type Functions (Built-in) Functions - user defined Functions Reference Passing/Returning Arrays Concepts and 1-D Arrays Array Data Management Two dimensional arrays and Matrices Structures Basics Structures passing/returning 2D Array Memory Addressing Display Using IO Manipulation Display Using C Formatting Tricks User Defined Data Types Enumerated Types Preprocessor Directives And Macros Exception Handling Programming Paradigms and OOPs Advantages Abstraction and Encapsulation Polymorphism Inheritance Function Overloading Concepts Function Overloading Varieties Function Overloading Special Cases Defining Classes Creating and Using Class Objects Class Members Accessibility Class Function Types Inline Functions Constant Functions Nesting of Functions Class Members Scope Resolution Static Members in a Class Array of Objects Constructor Concepts Default Constructor Parameterized Constructor Copy Constructor Constructor Overloading Destructors Inheritance Fundamentals Public Derivations Private and Protected Derivations Multiple Inheritance Multi-Level Inheritance Class Nesting Data File Concepts Handling Text Files Handling Binary Files Pointer Concepts Pointer and Arrays Pointers and Functions Object Pointers This Pointer Linked Lists Stacks Queues


Back