union – POFTUT

C – Union

[rps-include post=6557] Union is a data type used to store different type of variables. Union is very similar to the struct but have some differences those have explained below. Union can contain int,char,float,… etc. in a single block. One union can contain single set of data at a time. Defining Unions Defining union is very … Read more

Python Set Data Structure With Examples

Python provides different structures to hold data. We have all ready looked list and dictionary in this site. Today we will look usage examples and features of python set. Set have same properties and behaviour of mathematical set. Sets have following features unordered means the order is not important and do not expect same order for … Read more