Search:

Type: Posts; User: Brokn

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    4,186

    Curve drawing in C

    http://www.sci.brooklyn.cuny.edu/~sdexter/cis15/HW/Program6.html

    The link above has specifications for a program that a professor claims is "simple". does any1 else think this is simple or can get...
  2. Replies
    3
    Views
    3,723

    how would you print an asterisk based on the...

    how would you print an asterisk based on the height?
  3. Replies
    3
    Views
    3,723

    Graphing a sine/cosine/tan curves in C???

    http://www.sci.brooklyn.cuny.edu/~sdexter/cis15/HW/Program6.html

    the link above are specifications to making a so called "simple" program, but how would this be done? especially the graphing of...
  4. Replies
    9
    Views
    2,743

    thats not kinda what im lookin for, heres an...

    thats not kinda what im lookin for, heres an example:

    $prog 10 20

    would declare 2 arrays like a[10] and b[20]

    $prog 10 20 25

    would declare 3 arrays like a[10], b[20], and c[25].
  5. Replies
    9
    Views
    2,743

    i understand that it would be 4, but say you dont...

    i understand that it would be 4, but say you dont know how many ints are gonna be put after $prog . what if it is different everytime... and everytime it would have to create different amount of...
  6. Replies
    9
    Views
    2,743

    see the thing is.... what if someone types: ...

    see the thing is.... what if someone types:

    $prog 10 20 <-- needs to make 2 arrays, first with 10 max size next with 20 max size

    or

    $prog 10 20 30 <-- needs to make 3 arrays, first with 10...
  7. Replies
    9
    Views
    2,743

    thank you very much

    thank you very much
  8. Replies
    9
    Views
    2,743

    make array with command line help

    hi, i am trying to make an array using a command line arguement. I am not good with using command line arguements so that is why i am posting here.

    $prog 10 20

    using the command above, i am...
  9. working on a string tough string prog, need help

    the program i am working on will read a dictionary file with over 25000 words. it will check for repeating characters, if there are 4 characters repeated in a string then it prints out that straing...
  10. Replies
    7
    Views
    1,561

    what do u mean? just wonderin if u can make the...

    what do u mean? just wonderin if u can make the char comparison from token = strchr(string, 's');... the 's' part change some how in a loop. need that to cycle through each of the letters and find...
  11. Replies
    7
    Views
    1,561

    wow nice but one prob lol, we suposed to use str...

    wow nice but one prob lol, we suposed to use str functions while doing that. like as seen above, got it to count for s with the strchr() function but need that code to cycle through all the charcters...
  12. Replies
    7
    Views
    1,561

    thx alot that helped. and how would i make it...

    thx alot that helped. and how would i make it count each letter, like in the line token = strchr(string, 's'); where i have the 's' is there anythin i can change it to so i could put it in a loop to...
  13. Replies
    7
    Views
    1,561

    need help with strings and str functions

    im working on a program for my advanced c programming class in college and im having trouble. in this program we have to make a program that counts the number of repeated characters in a string. if...
Results 1 to 13 of 13