Search:

Type: Posts; User: Chrys

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    899

    You are right. I was trying to change the...

    You are right. I was trying to change the read-only string in line 8.
    Thanks.
  2. Replies
    4
    Views
    899

    Sorry maybe I should rephrase the title. I agree...

    Sorry maybe I should rephrase the title. I agree with you that the problem is that I am trying to change a read-only variable.

    Any suggestions on how I can fix it? I just want to be able to swap...
  3. Replies
    4
    Views
    899

    What's wrong with this code?

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

    void swap_chars(char* str, int i, int j);

    int main()
    {
    char* s = "Hello World of C";

    printf("Before: %s\n", s);
  4. Replies
    5
    Views
    2,307

    After searching for a while here are the methods...

    After searching for a while here are the methods I found for reading/analyzing source code:


    Using an editor: Most text editors support regular expressions. Here is a guide for regular...
  5. Replies
    5
    Views
    2,307

    Analyze code in large systems

    Hello. I am working on a large system written in C programming. I am not fully aware of the whole system. I get an error and I found which function is causing that error. Any ideas how I could find...
Results 1 to 5 of 5