Search:

Type: Posts; User: viclaster

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    3,353

    LOL, Thank you very much. Good eye. I have made...

    LOL, Thank you very much. Good eye. I have made that mistake many times in the past. I have probably overlooked that error 20 times just on this program. I'll have to be more careful. Thanks...
  2. Replies
    6
    Views
    3,353

    Morse code conversion

    I am writing a program that will convert Morse code to alphabet and vice versa.

    Here is the code so far



    #include <stdio.h>

    int main()
    {
  3. Replies
    13
    Views
    2,033

    Okay, I've got it now. Thank you so much.

    Okay, I've got it now. Thank you so much.
  4. Replies
    13
    Views
    2,033

    Thanks for the help so far. Okay here is what...

    Thanks for the help so far. Okay here is what I've got. Does anyone else have any problems compiling and running this program?



    #include <stdio.h>
    void shift( int y, char loop[7]);
    int...
  5. Replies
    13
    Views
    2,033

    hehe, what can I say? Thank you very much. But...

    hehe, what can I say? Thank you very much. But I still get the error even after I recompile this:



    #include <stdio.h>
    char shift( int y, char loop[7]);
    int main()
    {
    char loop[7] =...
  6. Replies
    13
    Views
    2,033

    I also get a " [Warning] In function `char...

    I also get a " [Warning] In function `char shift(int, char*)':"
    Is this what you were talking about with using the pointers? I'm a bit confused.
  7. Replies
    13
    Views
    2,033

    Okay, I thik I'm getting closer. I have narrowed...

    Okay, I thik I'm getting closer. I have narrowed it down to one error I think. It says line 33 parse error at end of input. Strange that it has only 32 lines of code.

    Sebastiani I tried...
  8. Replies
    13
    Views
    2,033

    Thanks guys, you are a big help to me. I've...

    Thanks guys, you are a big help to me. I've changed a few things that helped, but now it prints out the array as many times as the scanf input. I just want it to print one time after the shifting...
  9. Replies
    13
    Views
    2,033

    Array shifting help

    Can someone help me with array shifting. I am trying to shift an array a number of times that someone enters.

    Example: The array is abcdef and I enter 1 to shift the array once. The output is...
  10. Replies
    7
    Views
    1,665

    Thanks I got it now. I will look for reasons why...

    Thanks I got it now. I will look for reasons why scanf() is bad to use but for now that is what I'm used to.

    Would it be smart to set up each word that needs to be generated as a seperate...
  11. Replies
    7
    Views
    1,665

    I really appreciate your help. Please be...

    I really appreciate your help. Please be patient. I think I'm getting somewhere. I played around with what you posted, but I need to print one name. Let's just say I wanted to print "Anna". And...
  12. Replies
    7
    Views
    1,665

    Help with arrays again

    Okay, I'm new at this and please if you don't want to help don't post. I need help with this array that I need to use to print a name. Here is what I have already. Any suggestions. I might be way...
  13. Replies
    3
    Views
    1,009

    Sorry again. I kind of jumped the gun. I will...

    Sorry again. I kind of jumped the gun. I will search for more tuturials. Thanks for the reply.
  14. Replies
    3
    Views
    1,009

    Whoops. Didn't read the sticky about "*READ THIS...

    Whoops. Didn't read the sticky about "*READ THIS FIRST* Guidelines to the Board and hints for help". Sorry. I will try to place the source code a little later on. Then maybe someone can help. ...
  15. Replies
    3
    Views
    1,009

    Help with arrays

    I'm new at C programming and was wondering if someone could show me how to create a looping program that uses an array to store characters input from the keyboard (like names) and when the array is...
  16. Replies
    5
    Views
    1,176

    Thanks. :confused: Who woulda thunk to put in 2...

    Thanks. :confused: Who woulda thunk to put in 2 getchar()s. Maybe everyone else but me. :)
  17. Replies
    5
    Views
    1,176

    Thanks for the response. Well I thought I...

    Thanks for the response.

    Well I thought I fixed it.

    I've tried the


    #include <stdio.h>
    main()
    {
  18. Replies
    5
    Views
    1,176

    Nevermind. I'm kind of slow at this, but I...

    Nevermind. I'm kind of slow at this, but I figured it out. Thanks.
  19. Replies
    5
    Views
    1,176

    End of Program

    This is a total noob question but when I run a simple program how do I keep my program window open until I enter a character from the keyboard. Like I said, I'm new at this and thought I might come...
Results 1 to 19 of 21