Is the following code legal?
struct a
{
int x;
struct a b;
}
Answer Posted / dilpreet
yes, it is nested structure
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
What is the difference between āgā and āgā in C?
What is pragma in c?
What is wild pointer in c?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What are the general description for loop statement and available loop types in c?
What are the 5 types of inheritance in c ++?
What is signed and unsigned?
What is the explanation for cyclic nature of data types in c?
Write a code to generate a series where the next element is the sum of last k terms.
Explain what is the benefit of using enum to declare a constant?
Is boolean a datatype in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain how can you determine the size of an allocated portion of memory?
What is const keyword in c?
Write a factorial program using C.