answersLogoWhite

0


Best Answer

Declarative, as an adjective, means:

1. Serving to declare or state.

2. Of, relating to, or being an element or construction used to make a statement: a declarative sentence.

Declarative, as a noun, means:

A sentence or expression that makes a statement.


expands the main idia.


Declarative, as an adjective, means:

1. Serving to declare or state.

2. Of, relating to, or being an element or construction used to make a statement: a declarative sentence.

Declarative, as a noun, means:

A sentence or expression that makes a statement.

User Avatar

Marvin Durgan

Lvl 10
2y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

1mo ago

A declaration is a formal or explicit statement or announcement. It can be a public pronouncement of a fact or intention, often made by an authority figure or organization.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the definition of declaration?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between declaration and definition?

definition: the meaning or description of person/place/thing declaration: taking a stand


What is the difference between declaring variable and initializing variables?

Actually, there is a third step, call definition. Declaration is a statement to the compiler of what type an identifier is, definition is the allocation of memory for that identifier, and initialization is the assignment of an initial value to that identifier. Usually, declaration and definition are done together, but you can also add initialization in that step if desired. int a; /* declaration and definition */ a = 1; /* initialization */ int a = 1; /* declaration, definition, and initialization */ For the case of seperate declaration and definition, consider the struct... struct _mystruct { int a; }; /*declaration */ struct _mystruct mystruct; /* definition */ struct _mystruct { int a; } mystruct; /*declaration and definition */ Note: To be more precise: struct _mystruct; /* struct declaration */ struct _mystruct { int a; }; /* struct definition */ typedef struct _mystruct MYTYPE; /* type definition */ extern struct _mystruct mystructvar; /* variable declaration */ struct _mystruct mystructvar; /* variable definition */ struct _mystruct mystructvar = {7} ; /* variable definition with initialization */ struct _mystruct { int a; } mystruct; /* struct definition and variable definition */ extern struct _mystruct { int a; } mystruct; /* struct definition and variable declaration */


What is the difference between declaration and a definition in c plus plus?

A declaration is an incomplete type whereas a definition is a complete type.


When variable in c gets memory After declaration or initialization?

Definition. Example: extern int x1; /* declaration */ int x2; /* definition */ int x3= 2; /* definition with initialization */


What is the definition for factors of productions?

th declaration of independence


What is the difference between declaration and initialization?

Perhaps an example will help. extern int value; /* declaration */ int value; /* definition */ int value= 20; /* definition with initialization */


In a dictionary does the definition come after the word?

Yes. Often a pronunciation guide and a declaration of word type precede the definition.


What is the syntax of function?

Function declaration, definition, or calling? Pick one.


Where can the declaration of a function be placed?

The declaration of a function can be placed at, or anywere before its definition. It also needs to be placed prior to its first use.


What is preamble the definition?

Preamble is small talk before a major speech or declaration.


What is different between a definition and declaration of a variable?

A declaration and definition of a variable are nearly synonymous, especially as it is found in source code. However, the concepts are separate. The definition of a variable may include variable name, type, scope, operating range, and initial value(s). Program documentation includes only the definition of a variable; not the declaration. It defines the meaning and use of a variable. Whereas the declaration of a variable indicates to the compiler/interpreter that the name should be recognized as a variable. Understand that when the variable declaration is given in source code it may include the definition, though not always. In some languages a variable may be declared and then defined later as to type, operating range, et al.


What is the difference between declaration and a definition in C with small example?

declaration examples:int main (void);extern int somevariable;definition examples:int main (void) { puts ("Hello world"); return 0; }int somevariable;