Search:

Type: Posts; User: hchingwong

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,618

    I found it. It's portable object used by gnu...

    I found it. It's portable object used by gnu gettext utilities.

    [you don't see this]I won! I won! You are the TELETUBY. :(:( Poor you.[/you don't see this]
    Thank you for replying and...
  2. Replies
    6
    Views
    1,618

    I see it mentioned everywhere but there are non...

    I see it mentioned everywhere but there are non declaring what it literally stands for. Is it the folder for portability related files or it means it contains stat pots in it which you normally need...
  3. Replies
    6
    Views
    1,618

    The IDE is called anjuta and I was on linux. The...

    The IDE is called anjuta and I was on linux. The files I have under the project directory are:

    total 28
    -rw-r--r-- 1 wando wando 0 2011-10-05 18:27 AUTHORS
    -rwxr-xr-x 1 wando wando 4507...
  4. Replies
    6
    Views
    1,618

    simply wondering what PO is

    I opened a project with an IDE, the purposes of the things being created automatically are quiet obvious from the file names of themselves'. But for the "po" folder I couldn't figure out what it...
  5. Replies
    3
    Views
    1,733

    Get it. Thanks, Xupicor.

    Get it. Thanks, Xupicor.
  6. Replies
    3
    Views
    1,733

    Somebody please helps me!

    When I include my enumeration in same project but two files, it failed. Could you tell me what is wrong?

    Like these:



    /*TheEnum.h*/
    enum TheEnum{
    TheEnum_True,
    TheEnum_False
  7. Yeah~

    Thank you very much. I get it. I can only include files in the source files and not the headers. Thank you for the extra commands, too.
  8. (MinGW)I don't know how to link files together

    I tried something like this:

    The main.c


    #include <malloc.h>
    #include <stdio.h>

    #include "GetLine.h"
  9. and ';'. Another mistake.

    and ';'. Another mistake.
  10. Yah, I'm actually want to declare a void pointer...

    Yah, I'm actually want to declare a void pointer and cast it to a function pointer.
    This one

    void *start
    instead of this one

    void (*start)(void);
    It works. But I know now this is...
  11. About pointer to function (Soved by myself)

    ----I love the pointer in C very well. I have just learned how to declare a pointer to a function and how to use it:


    void (*start)(void); /*The star should be placed with the word*/
    ...
  12. Newbie have to go to bed.

    Newbie have to go to bed.
  13. while(scanf("%[^'\n']s", srt) == 1); Can you tell me how to use scanf()?

    Q1, Is [a-z], [^x], ... these simple regular expressions in the stardard of C? I mean, OK in most implements?

    scanf looks strange to me. What will scanf actually do in the while loop?
    Q2, How...
  14. X seems like a pointer point to an integer array...

    X seems like a pointer point to an integer array that contain 5 members.
    Because complier give me an warning: "assignment from incompatible pointer type" in this case.


    int (*x)[5];
    int b[3];...
  15. Thank you laserlight.

    Thank you laserlight.
  16. "int (x*)[5];" Could anyone tells me what's the type of x?

    "int (x*)[5];"
    Is x a pointer to "int ...[]"?
Results 1 to 16 of 16