Array of Union In C | Programmerdouts

Array of Unions Before taking a deep dive into Array of Unions, We suggest you please go through this topic : What are Union?   and   what are Array? Till now we have seen array of basic data types like array of int ,array of float ,array character etc. … Read more

Unions In C | Programmerdouts

Unions Why Unions? As you know 'C' language provide us with variable to store the single data , Array for storing related type of data,then Why Union ? Because, In real life there is a situation where we have store a data which is logical related to ea… Read more

gets() and puts() In C | Programmerdouts

Input means to provide the program with some data to be used in the program Output means to display data on screen or write the data to a printer or a file. C programming language provides many built-in functions to read any given input and to display data on scr… Read more

Switch Statement In C | Programmerdouts

Switch Statement Till now we have Use if else statement to choose one of the many alternatives. But when number of alternative increases the , complexity of the program increases and then if else statements becomes very complex. To Make such problems easie… Read more