Is that source code size or executable size? Neither are accurate measurements. On one hand, source code may be encoded in something other than ASCII, which can, in some cases, double the size of the file. On the other, there's a lot of stuff in the executable that the programmer hasn't written himself. For example, if I wrote this:
1 2 3 4 5
|
#include <iostream>
int main(){
return 0;
}
|
and compiled it on MinGW, even though the program does nothing, the executable size would be around 200 KB.
Lines of code are a slightly better measurement, but only barely.
I can type ~30 words per minute (not it does much of a difference, anyway), and, on average, I'd say I can write 200-300 correct lines of code in 8-12 hours. I never timed myself, so this is just an estimate. Also, this figures only apply while coding proper, not while fixing my previous errors.