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



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

Answer / Savitri

"In C, data types can be arranged in a hierarchy based on their complexity. Primitive data types like int and char are considered the base types. Structures, unions, and arrays are derived data types that can contain multiple primitive or other derived data types. Pointers are a special type of derived data type that point to memory locations containing other data types, creating a cyclic relationship between them."n

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Explain what are bus errors, memory faults, and core dumps?

1 Answers  


what type of language is C?

13 Answers   Microsoft,


Difference between macros and inline functions? Can a function be forced as inline?

1 Answers   HAL, Honeywell, Zomato,


how to find sum of digits in C?

21 Answers   CTS, Infosys,


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


what is pointer ? what is the use of pointer?

6 Answers   Infosys,


c program to manipulate x=1!+2!+3!+...+n! using recursion

1 Answers   TCS,


Toggle nth bit in a given integer - num

5 Answers   Qualcomm,


Was 2000 a leap year?

1 Answers  


A C E G H +B D F A I ------------ E F G H D

1 Answers   Infosys,


Explain do array subscripts always start with zero?

1 Answers  


What are identifiers and keywords in c?

1 Answers  


Categories