Answer Posted / suriya
Structures are the C equivalent of records. A structure type
is defined by
struct struct-name
{
type field-name;
type field-name; ...
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are the modifiers available in c programming language?
List some basic data types in c?
What are the applications of c language?
What is the meaning of && in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain do array subscripts always start with zero?
Do you know the use of fflush() function?
What is the difference between NULL and NUL?
What is typedef?
What is pivot in c?
What is a structure member in c?
What is meant by gets in c?
swap 2 numbers without using third variable?
How to declare pointer variables?
What is C language ?