Vista Source code

  • Thread starter Thread starter Mario Rosario
  • Start date Start date
M

Mario Rosario

Any idea how many billion lines of code are in Vista :) If I remember
correctly, I think it was roughly 45 million in XP, 30 in Linux.
 
40 million in XP and 50 million in Vista. However, improvements in tools
for writing code in the past five years have significantly decreased the
number of the lines of code needed to accomplish a task so the differences
in the number of lines is deceptive. Vista is more powerful than XP by more
than the 50 : 40 ratio would suggest.
 
Sure,

cout << h;
cout << e;
cout << l;
cout << l;
cout << o; // 5 lines of code

cout << hello; // 1 line of code

and the compiler optimize the code.

Are these guesses or known numbers.
 
From MS blogs.

Mario Rosario said:
Sure,

cout << h;
cout << e;
cout << l;
cout << l;
cout << o; // 5 lines of code

cout << hello; // 1 line of code

and the compiler optimize the code.

Are these guesses or known numbers.
 
Back
Top