When you see such C code, what is the order of destination?
int i = 0, var1, var2;
I do not understand the syntax ...
Only ia null value is assigned.
i
var1and var2uninitialized.
var1
var2
"" . int, . = , - "". , - "".
int
=
, .
(i = 0), - .
i 0, var1 var2 , , ( ).
0
They are all local variables, the only difference is that I am assigned the value 0, while the values of var1 and var2 are unpredictable, they will have garbage values.
Source: https://habr.com/ru/post/1772315/More articles:AlertDialog setSingleChoice without switches - androidC - wanted to know the maximum amount of memory allocated in the program - cMaven combat plugin cannot exclude parsed libraries in military format - javautf-8 encoding a std :: string? - c ++rails button_to does not set the class correctly - ruby-on-railsLinq to SQL intellisense не знает таблиц в объекте datacontext - sqlMass update of Couch DB using handlers - jsonGet only response headers - c #HttpWebResponse: closing a stream - c #API-адреса Datastore API и запросы хранилища данных - google-app-engineAll Articles