Example & Tutorial understanding programming in easy ways.

What is the explanation for cyclic nature of data types in C?

Some of the data types in C have special characteristic nature when a developer assign value beyond the range of the data type. 

-There will be no any compiler error and the value change according to a cyclic order. 

-This is called as cyclic nature and Char, int, long int data types have this property. Further float, double and long double data types do not have this property.

Read More →