+ 1
what does int temp = arr[0], i; in c++ mean?
temp is assinged to which value...??
1 Respuesta
+ 3
After the declaration, 'temp' will have the value of the first element inside the array 'arr', and 'i' will be an uninitialized integer.
temp is assinged to which value...??