Open In App

C Program to Find Common Array Elements

Last Updated : 03 Aug, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

Here, we will see how to find the common array elements using a C program.

Input:  

a[6] = {1,2,3,4,5,6} 
b[6] = {5,6,7,8,9,10} 

Output: 

common array elements is 5 6  

Output
common array elements is 
5 6 

Next Article

Similar Reads