Union in C

Union is a user defined data type which contains variables of different data types. Or we can say that, union is collection of dissimilar type of elements or data. The concept of union is taken from structure so the syntax of union is same as structure. Union can be defined using keyword “union” as shown …

Union in C Read More »

How Improving Website Design Can Increase Sales

Retailers have embraced the internet as a powerful selling tool. Now with shoppers using mobile devices more than ever to make purchases, maintaining a flexible online shopping interface is extremely important to the long-term success of any business. Therefore, focusing on maintaining an effect ecommerce website design is essential to staying competitive in the online …

How Improving Website Design Can Increase Sales Read More »

C Enumeration

C Enumeration or Enumerated Data Type C enumeration is a user defined data type which consists of a list of names and each name corresponds to an integral constant. It increases the program readability as names are easy to read and maintain. Enumerated data type can be defined in C using “enum” keyword. The syntax …

C Enumeration Read More »

C Function Pointer

We declare a pointer to integer, pointer to character or pointer to array. Similarly we can declare a pointer to function or a function pointer. Same as like variables, functions also have some address in memory. C Function Pointer A function pointer is a pointer that contains the address of a function. It can be …

C Function Pointer Read More »