Help for this page

Select Code to Download


  1. or download this
    int countGC(char * gcString) {
            int res = 0;
            for (int i = strlen(gcString); i-->0; gcString++) { if (*gcStr
    +ing == 'C' || *gcString == 'G') { res++; } }
            return res;
    }