Q&A
Ask and answer questions to make information more available to wider audiences.
Zander Ackerley @ackerleyzander   06, Apr 2023 12:00 AM
cyclic nature of data types
What is the explanation for the cyclic nature of data types in C?
answers 1
 
Answer 1
Johnny Akin @akinjohnny   06, Apr 2023 04:40 PM
Some of the data types in C have special characteristic nature when a developer assigns value beyond the range of the data type. There will be no compiler error and the value changes according to a cyclic order. This is called cyclic nature. Char, int, long int data types have this property. Further float, double and long double data types do not have this property.