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 |
Explain what are bus errors, memory faults, and core dumps?
what type of language is C?
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?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
what is pointer ? what is the use of pointer?
c program to manipulate x=1!+2!+3!+...+n! using recursion
Toggle nth bit in a given integer - num
Was 2000 a leap year?
A C E G H +B D F A I ------------ E F G H D
Explain do array subscripts always start with zero?
What are identifiers and keywords in c?