Answer Posted / anandhi
structure is nothing but user defined data types...
structure used then more then one datatypes used in single
strud\cture...
syntax:
struct [struct_name]
{
datatype var1;
...
...
};
struct variable creation:
syntax:
struct [name]
{
...
...
}[struct var_name];
[struct var_name].variablename;
.......................................
ex:
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is echo in c programming?
Explain what are its uses in c programming?
Explain the difference between strcpy() and memcpy() function?
How to implement a packet in C
code for quick sort?
What are local variables c?
what are the 10 different models of writing an addition program in C language?
how many key words availabel in c a) 28 b) 31 c) 32
Under what circumstances does a name clash occur?
What is indirection? How many levels of pointers can you have?
What is structure packing in c?
What does the && operator do in a program code?
Is null a keyword in c?
What is structure pointer in c?
Explain high-order and low-order bytes.