answersLogoWhite

0


Best Answer

The type is struct. The name can be any valid variable name that is not a keyword or other reserved name.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the name of the C structure type?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the name of the structure type in C plus plus?

The same as in C, struct.


What is the main use for type def seems to be defining structures?

When you define a structure, C does not provide a type for that structure. In order to subsequently declare an instance of that structure, you need to use the word struct again. The typedef allows you to declare a type equivalent to the structure. For example... struct person { char* name, int phone}; struct person myperson; With typedef, you can simplify to... typedef struct person { char * name, int phone} person;person myperson; In C++, this is automatic, but not in C.


Basic structure of c n c plus plus?

The basic structure of a C or C++ program is built around types. A structure is a type. A function is a type. A class is a type. All of these types can be built from primitive (built-in) types and can be used to create ever-more complex types.


What 'c' is the name of a type of bread?

The type of bread with the name begining with 'c' is ciabata.


What is a basic structure of a c programming?

Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...) Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...)


WRITE STRUCTURE AND IUPAC NAME OF OXALIC ACID?

Oxalic Acid is the old name for ethanedioic acid. Its structure is HO(O=)C - C(=O)OH


What is object in c sharp?

An object is a type of data structure. It's one of the most basic concepts in object-oriented programming (as you might guess from the name).


How can define date data type in c structure?

struct tm can be an example.


How is a structure type pointer variable declared in c?

struct thisorthat *ptr;


What is the data structure which stores the multipole values?

No such thing exist in C but you can do this using structure data type and creating arrary of it object there after!!


What is the compound name for CH3NO?

It is Methanamide with structure: H-(C=O)-NH2


What is the Pascal programming language data structure?

In Pascal, data structures are implemented with recorddata types. A record is synonymous with the structdata type in C, or the class data type in C++.