User profile: skaa

User info
User name:skaa
Name:Sergey Kamenev
Location:Chicago, IL
Website:http://webcam.vemix.net
Statistical data
Occupation:Administrator
Skills:C
PHP
C++
Assembly
LISP
C#
History
Joined:
Number of posts:46
Latest posts:

what happens after memory leaks ?
Windows OS frees all memory allocated by the application.

Prime Factorization Program
[code] for(divisor=2;num>1;) { for(;divisor<=num;divisor++) { if(num%divisor==0) ...

Comparing DNA sequences using arrays
Read this, maybe it will help: https://en.wikipedia.org/wiki/Longest_common_subsequence_problem

what is the correct output? explain your answer please
9 49

Array division problem
Change [code]y=(a/s)*100;[/code] to [code]y=(a*1./s)*100;[/code]