Computer Science, asked by mudikenaresh046, 9 months ago

Which of the following cannot
be static in C?
variable:
structures
functions
none

Answers

Answered by nischalch21
1

functions is the correct answer....

Answered by adventureisland
0

None of the above can be static in C.

Because variables, structures, functions are static elements in C.

About Static elements in C language :

VARIABLE :

  • Every variable is just like the name of such a memory region where we store information. In C or indeed any programming, we may modify the independent variable and reapply it several times.

STRUCTURE :

  • A functional is a collection of instructions that help to complete a job. Each C program appears to contain a single method, main(), and even the simplest programs can specify more functions. You may partition your program into different functions.

FUNCTIONS :

  • A structure is a collection of parameters of various data kinds that are identified by either a number of names. Now let us look at an example to see why a structural is necessary for C language.

Similar questions