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
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Where is volatile variable stored?
Do you have any idea how to compare array with pointer in c?
Are pointers really faster than arrays?
What are two dimensional arrays alternatively called as?
What is cohesion and coupling in c?
What is the difference between pure virtual function and virtual function?
Is null a keyword in c?
What is the difference between a function and a method in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What is #pragma statements?
What are the different types of control structures?
How can I ensure that integer arithmetic doesnt overflow?
What are the types of pointers in c?
What is variable declaration and definition in c?