Search:

Type: Posts; User: jigidyjensen

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    3,581

    I use GCC, it is available for all platforms, and...

    I use GCC, it is available for all platforms, and it's open source.
  2. Replies
    0
    Views
    913

    C equivilant of boost

    What is the most standardarzed, peer reviewed, open source 3rd party libriries for the C language.

    For example, I know that C++ has boost.
  3. Thank You

    Thank you for your help. Things make more sense to me now, I had been struggling with some of the basics like that since I have been trying to learn C.
  4. strcpy(), 2 strings, and segmantation fault

    What is wrong with the following code?

    char *string = "adfjk";
    char *string2 = "adfjk";
    strcpy(string, string2);

    It produces a segmentation fault.
Results 1 to 4 of 4