Slashdot Mirror


User: CamiloNino

CamiloNino's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Write-only code. on Was Linus Torvalds Right About C++ Being So Wrong? · · Score: 1

    This:

    float vector[9] = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9};

    Compiles fine in GCC, and it doesnt use pointers, it assigns the values directly to the array (MOV instructions on the generated assembly code)