Monday, February 7, 2022

Intersection operation perform in c programming

if set A = {2,5,6} and set B = {3,5,2,6}
Than Intersection of A and B is intersection = {2,5,6}

Output of the intersection operation


Intersection output


This code to perform Intersection operation in C programming ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡



Union Operation perform in c programming

if set A = {2,5,6} and set B = {3,5,2,6}
Than union of set A and B is Union = {2,3,5,6}

Output of the Union operation


Union output




This code to perform Union operation๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡




Popular Posts