Given the following declaration. float abc[8]={0.5 , 51, 21 }; what is the result of the value of abc[2] after the follo
Posted: Sun May 15, 2022 1:31 pm
Given the following declaration. float abc[8]={0.5 , 51, 21 }; what is the result of the value of abc[2] after the following expression? abc[2] += ++abc[0] + abc[3];