Difference between Microprocessor and Microcontroller

In this tutorial I am sharing the difference between Microprocessor and Microcontroller. Before learning the differences, lets first learn about what is microprocessor and microcontroller. What is Microprocessor? Microprocessor (µP) is the logic chip that contains all or most of the central processing unit (CPU) functions on a single integrated circuit. Microprocessor is a miniature …

Difference between Microprocessor and Microcontroller Read More »

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 »