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
Explain how can I right-justify a string?
What is the purpose of void pointer?
How can I access an I o board directly?
How can I trap or ignore keyboard interrupts like control-c?
What is a program flowchart?
What is return type in c?
What is the importance of c in your views?
By using C language input a date into it and if it is right?
What are header files in c programming?
What is the difference between fread buffer() and fwrite buffer()?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Where we use clrscr in c?
What does s c mean in text?
List some of the static data structures in C?
What are the applications of c language?