eg. earthquake motors have
typedef enum {qfalse, qtrue} qboolean;
When you do
static qboolean variable;
Is the variable initial value 0?
Static and global variables are cleared by default if there is no value to initialize.
In your example, it variablewill have an equivalent enumeration 0, i.e. qfalse.
variable
0
qfalse
Source: https://habr.com/ru/post/1781201/More articles:Приложение WPF для Интернета - wpfService registry for Apache Camel applications - apache-camelWhat function to call? (delegate in sister class) - c ++Каким образом можно добавить выражение `if` в генератор в Python? - pythonExtjs: повторное использование той же сетки в TabPanel - extjsHow to get a list of amplitudes from an audio file? - linuxHow to get the size of an element with a hidden parent? - jqueryHow can I decode a RAW / WAV file into a list of numbers? - audioSetting text color for all elements in IBOutletCollection - objective-cHow to get a form using AJAX, JSON and PHP when changing a value in a select box? - jsonAll Articles