Search:

Type: Posts; User: robin

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    2,396

    Thanks Dave_Sinkula I think that's the...

    Thanks
    Dave_Sinkula

    I think that's the problem.


    But why it is valid in turbo c?
  2. Replies
    12
    Views
    2,396

    The main function is like following...

    The main function is like following
    =================================


    # include <stdio.h>
    # include <string.h>
    # include <stdlib.h>
    # include <conio.h>
    # define TRUE 1
    # define FALSE 0
  3. Replies
    12
    Views
    2,396

    sorry. How to post code? Format?

    sorry.

    How to post code? Format?
  4. Replies
    12
    Views
    2,396

    I guess I should install some "patch" for VC6.0...

    I guess I should install some "patch" for VC6.0 that make it can run any ansi C code.
    I tried my VC6.0 and in common lab. Both can not run c code.
    anybody give an solution?
  5. Replies
    12
    Views
    2,396

    When I step into code: have such error for any...

    When I step into code:
    have such error for any fuction:

    Unhandled exception in ...exe. :0xC0000005:access violation
  6. Replies
    12
    Views
    2,396

    How to run C code under VC environment?

    I always get error report running C program in VC. It seems that some symbol interpretation not installed? How to deal with it?



    Thanks
    robin
  7. Replies
    10
    Views
    50,944

    I just use TC as a complier. OS is windows...

    I just use TC as a complier.

    OS is windows XP,machine seems good in the school computer lab.
  8. Replies
    10
    Views
    50,944

    Sorry for mis typing. it shound be array[SIZE]....

    Sorry for mis typing.
    it shound be array[SIZE].
    Shakti ,do you mean that I must use malloc to allocate the memory one by one? Or I can allocate at a time for 300000 long int array? Can you show an...
  9. Replies
    10
    Views
    50,944

    Help!Maximum array size in C?

    I need to sort a long int array which size at 300000 in C. When I define like this:

    # define SIZE 300001
    long int array[SIZE]

    in my code, complier say that my array is too large.

    Anybody...
  10. Replies
    3
    Views
    1,096

    Can I use while(root.record_link!=NULL) to judge...

    Can I use while(root.record_link!=NULL) to judge whether the root.record is NULL or not?
  11. Replies
    3
    Views
    1,096

    Help on linklist in a binary_tree

    struct Record
    {
    char own_name[20];
    int score_own;
    char opp_name[20];
    int score_opp;
    char result[2];
    int wins;
    int...
Results 1 to 11 of 11