answersLogoWhite

0

The term C static is a variable within computer programming in particular C Language. When set static the variable inside a function keeps its value between invocations.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is Definition of static in short story?

"Static" is a term usually applied to characters and means unchanging or constant.


What is the definition of static menu?

A menu that rarely changes is static.


What is definition of static menu?

A menu that rarely changes is static.


When matching each problem (term) with its sum or difference (definition). Match Term Definition 4.23 plus 16.21 A) 26.09 42.3 plus 1.621 B) 43.921 4.23 and minus 1.621 C) 20.44 42.3 and minus 16.21 D?

The term "4.23 plus 16.21" matches with definition A) 26.09. The term "42.3 plus 1.621" matches with definition B) 43.921. The term "4.23 and minus 1.621" matches with definition C) 20.44. The term "42.3 and minus 16.21" matches with definition D.


Do static variable retain their values even after exiting the function?

Yes. That is the definition of static.


Definition of dynamic force?

A dynamic force is a term used in physics. It refers to a force combined with energy that will cause motion. It is the opposite of static force.


Do static methods operate on objects why?

No. Why? By definition. A static method is, precisely, a method that is not meant to operate on an object. It can only work with static fields, and other static methods, of its class.


Why you can not use this pointer in static functions?

Because this points to the current object, but static methods don't have a current object (actually this is definition of the static methods).


Definition of static equipment?

Equipment in a generic Industrial plant setting which remain static and do not rotate during the course of operation are known as static equipment's.


What ia static electricity?

Type "static electricity" in the question search, press go, and you'll find the definition.


Are the methods or members of static class static?

A static class may or may not have static members. Adding the static keyword to the class definition won't change this. Note that an inner class which is not static may not contain static members (unless those members are also declared final).


Static variable in c?

A static variable in C is one in which the memory is preallocated before the execution unit begins and lasts for the entire program unit.A non-static variable in C will be allocated in the block in which it is contained, and destroyed outside that block.