Is the following code legal?
struct a
{
int x;
struct a b;
}
Answer Posted / raghu
no this code is illegal.
legal one:
struct a
{
int x;
struct a *b;
}
| Is This Answer Correct ? | 26 Yes | 7 No |
Post New Answer View All Answers
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What is data type long in c?
What is the use of bit field?
What is a file descriptor in c?
How does #define work?
Sir i need notes for structure,functions,pointers in c language can you help me please
Explain what is the difference between null and nul?
what is different between auto and local static? why should we use local static?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is difference between structure and union?
about c language
How is a pointer variable declared?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What are multidimensional arrays?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor