Search:

Type: Posts; User: stormfront

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    2,161

    wow, my bad guys, i just wanted to get some infor...

    wow, my bad guys, i just wanted to get some infor from a reliable source. Guess ill just google my question next time.

    "If you're intending to learn the course before you even show up, why are...
  2. Replies
    8
    Views
    2,161

    object oriented paridigm??

    Im in my first C programming class this semester, and next semester they have me signed up for Object oriented paridigm. What exactly is that? I have no clue.
  3. Replies
    14
    Views
    2,439

    i do have the habit of jumping ahead of myself...

    i do have the habit of jumping ahead of myself without paying attention. This is just so overwhelming right now. Hopefully with more practice i can not fret so much about writing these programs.

    I...
  4. Replies
    14
    Views
    2,439

    hmm this is what i have now. the character at the...

    hmm this is what i have now. the character at the end from the newline is gone but now the first 2 letters are funny shapes??



    #include <stdio.h>
    #include <string.h>
  5. Replies
    14
    Views
    2,439

    arg, yes, and i just noticed this line i have in...

    arg, yes, and i just noticed this line i have in there.


    while ( buff[i] != '\0' )

    thats evidently not going to work anymore.
    How could i take that out or modify it and get the code to work?
  6. Replies
    14
    Views
    2,439

    oh the wonders of being a noob. I tried adjusting...

    oh the wonders of being a noob. I tried adjusting the code in the link and utilizing it in my code in different parts, but now it doesnt return anything. i dont get any text back now.



    #include...
  7. Replies
    14
    Views
    2,439

    Help with simple encode program

    This is a simple casear cipher encode only portion that i wrote. it:

    1. Promtps for user input
    2. Asks for the shift value
    3. Uses the shift value such as 2 on the first letter then increments...
  8. Replies
    9
    Views
    2,794

    eh, i figured it out. yay for me. If anyone wants...

    eh, i figured it out. yay for me. If anyone wants me to post the final code i will. it now displays the graph after each move and counts the total number of times moved north south east and west.
  9. Replies
    9
    Views
    2,794

    man, im so lost on this....im gonna have hell...

    man, im so lost on this....im gonna have hell tommorow tryin to write this in lab. :(
  10. Replies
    9
    Views
    2,794

    wow A* seems interesting but i dont have enough...

    wow A* seems interesting but i dont have enough time to dive into it at the moment. Everyone keeps telling me this is easy, but im not getting anywhere. Im having trouble assigning directions to...
  11. Replies
    9
    Views
    2,794

    wow, thx for the info everyone. Ill get to work...

    wow, thx for the info everyone. Ill get to work on some of these ideas tommorow and see what i can come up with.
  12. Replies
    9
    Views
    2,794

    noobie maze program

    Im working on a maze solving program and i'm a little lost. It should just follow the maze walls to the right and find the exit using: west=0, north=1,east=2,south=3.

    The '.' represent open spaces...
  13. Replies
    36
    Views
    6,824

    OMG that was so easy, ok, i figured this part...

    OMG that was so easy, ok, i figured this part out.

    IS there an easy way like that that i can move the first letter of the stuff to be encoded to the end? The things people have been posting are...
  14. Replies
    36
    Views
    6,824

    ok, im not getting anywhere with this so im...

    ok, im not getting anywhere with this so im concentrating on getting the alphabet to wrap around and letting the user choose the number to encode by.

    I have it where the user can choose the number...
  15. Replies
    36
    Views
    6,824

    hmm, would something like this get me...

    hmm,


    would something like this get me anywhere?


    for( x = 0; buf[ x ] != '\0'; x++ )
    {
    if ((buf[x]>='A') && (buf[x]<='Z'))
    {
  16. Replies
    36
    Views
    6,824

    I can get anything to work , it just messes my...

    I can get anything to work , it just messes my code up even more, not even worth posting cause it is evidently way wrong. :(
  17. Replies
    36
    Views
    6,824

    got it! i'll get to work on it after class.

    got it! i'll get to work on it after class.
  18. Replies
    36
    Views
    6,824

    Almost, i just dont know how to check each...

    Almost, i just dont know how to check each individual letter for the loop, we have done loops like this: for(something = 0, something < \0, something ++);

    How would i check each individual letter...
  19. Replies
    36
    Views
    6,824

    yes, it would output what you have above. I know...

    yes, it would output what you have above. I know i need some kind of loop, but i am not sure how to do it because we havent learned very advanced looping in my class yet. ( i know it isnt a very...
  20. Replies
    36
    Views
    6,824

    oooh, haha well im still workin on it, i need to...

    oooh, haha well im still workin on it, i need to get it done before tuesday cause thanksgiving is coming up and i wont have time to work on it. But, i still have a few days i guess.
  21. Replies
    36
    Views
    6,824

    "mad sense" lol, i think im going mad trying to...

    "mad sense" lol, i think im going mad trying to learn this stuff!

    basically right after the word to be encoded is accepted in the encode function from the user i want to swap the first letter to...
  22. Replies
    36
    Views
    6,824

    Well heres what i have been having trouble with....

    Well heres what i have been having trouble with.
    After i get input from the user in the encode function i have. I want it to switch the first letter to the last posistion as your code above does....
  23. Replies
    36
    Views
    6,824

    No, still cant get it to work in the code. : ( ...

    No, still cant get it to work in the code. : (

    i know i must be trying to put it in the wrong place
  24. Replies
    36
    Views
    6,824

    :confused: im working on it...slowly

    :confused: im working on it...slowly
  25. Replies
    36
    Views
    6,824

    Thats it, but how do i get it to accept What the...

    Thats it, but how do i get it to accept What the user inputs instead of hello?
Results 1 to 25 of 54
Page 1 of 3 1 2 3