Is the following code legal?
struct a
{
int x;
struct a b;
}
Answer Posted / siva
This code is illegal.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is static identifier?
What is array in c with example?
What is #define size in c?
What is a structure in c language. how to initialise a structure in c?
How to write c functions that modify head pointer of a linked list?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What are the applications of c language?
What is the difference between #include and #include 'file' ?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Why c is called top down?
What is assert and when would I use it?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is new line escape sequence?