Search:

Type: Posts; User: mrdibby

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    893

    Sam's Teach Yourself C in 21 Days should cover...

    Sam's Teach Yourself C in 21 Days

    should cover most of those
  2. Thread: pointers

    by mrdibby
    Replies
    5
    Views
    1,067

    do you want to return a string or print it out?

    do you want to return a string or print it out?
  3. Replies
    4
    Views
    1,322

    Okay, that helped, thanks.

    Okay, that helped, thanks.
  4. Replies
    4
    Views
    1,322

    calloc'd #include #include...

    calloc'd


    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>

    char *reverse(char *input) {
    int i;
    int j = 0;
  5. Replies
    4
    Views
    1,322

    Segmentation Error

    So I have this code that's supposed to reverse a string and upon printing of the returned result I get a segmentation error.

    Now I put in several printf statements to test and I've found that the...
  6. Replies
    8
    Views
    962

    Yeah, again another thing I didn't state - the...

    Yeah, again another thing I didn't state - the first character has to remain the same.

    But your solution worked! I am now one step closer to understanding how programming works.

    Thanks Dino,...
  7. Replies
    8
    Views
    962

    Hmm, okay, that definitely helped in one case,...

    Hmm, okay, that definitely helped in one case, however I've tried inputting different names and when I input "marianne" I receive "mrniane"

    now this makes the first part of the string correct...
  8. Replies
    8
    Views
    962

    ohh of course, thanks man, let me see if that...

    ohh of course, thanks man, let me see if that solves the problem
  9. Replies
    8
    Views
    962

    Yeah, I didn't make myself clear enough, it is...

    Yeah, I didn't make myself clear enough, it is only meant to remove consecutive double letters. And those extra letters are meant to be removed as well as vowels.

    The problem is not all of the...
  10. Replies
    8
    Views
    962

    Help: Simple String Altering

    Okay, so I had this assignment to do which I failed last week to make a simple program to change a string: first to remove double letters, then to remove vowels

    Now I've probably misunderstood how...
Results 1 to 10 of 10