Search:

Type: Posts; User: afrade

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,811

    Help replacing words in a file

    I'm trying to write a program that will open an existing file supplied by the command line argument and then replace words with "We" or "we" by "I" and "a" or "A" by "The". When I run the program it...
  2. Thread: Link List help

    by afrade
    Replies
    4
    Views
    1,158

    Link List help

    how do I edit this so that the list that prints out is 1-10 instead of 10-1?


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

    struct list_el {
    int val;
    struct list_el * next;
    };
Results 1 to 2 of 2