do comments in code increase time complexity of program.?
i have many running applications wherein there codes commented within functions.
these commented codes of 500 lines within function , actual code of 10 lines. affect time complexity ?
these comments make size of application larger affect efficiency of application when respective function commented code called?
comments typically removed before compilation, don't affect code size. secondly, time complexity refers asymptotic time taken algorithm, example n^2 or log(n). see http://en.wikipedia.org/wiki/big_o_notation.