Search:

Type: Posts; User: me001

Search: Search took 0.00 seconds.

  1. Replies
    27
    Views
    4,045

    the output array result is actually the zipped...

    the output array result is actually the zipped version of arrays a and b.
    in that case, there is no use of initializing the array zip at the beginning of the code.
    Can this be seen as a possible...
  2. Replies
    12
    Views
    2,565

    thanks...got it... line 1: Parse Error,...

    thanks...got it...

    line 1: Parse Error, expecting `SEP'
    '<stddef.h> <string.h> typedef struct link { char *data'
    aborting compile
  3. Replies
    22
    Views
    4,169

    If n is very large, code will run damm slow....

    If n is very large, code will run damm slow.
    This is not efficient code.
  4. Replies
    22
    Views
    4,169

    thanks Code::Blocks is excellent

    thanks Code::Blocks is excellent
  5. Replies
    12
    Views
    2,565

    how much you put me down...i will come back...

    how much you put me down...i will come back strong... GOD


    Bug 1 :
    line 8: variable 'NULL' not found
    'list *output = NULL, *tail, *next'
    aborting compile
  6. Replies
    27
    Views
    4,045

    1. a and b are character arrays. No error. 2....

    1. a and b are character arrays. No error.

    2. len = strlen(a);
    Instead of strlen. i need to use "sizeof" to find lenght or size of array?

    3. What is wrong here?
    result = malloc(2*len);
  7. Replies
    12
    Views
    2,565

    Please post some C tutorials

    Please post some C tutorials
  8. Replies
    22
    Views
    4,169

    any nice free visual C compiler like Miracle C...

    any nice free visual C compiler like Miracle C Compiler?
  9. Replies
    22
    Views
    4,169

    if n is negative code won't work. Need to add...

    if n is negative code won't work.
    Need to add check to see, n is positive beore passing n to this code.

    what else i need to modify this code to work?
  10. Replies
    22
    Views
    4,169

    how to start this tool and debug code?

    how to start this tool and debug code?
  11. Replies
    27
    Views
    4,045

    ok.... bug 1: both a and b need to be...

    ok....

    bug 1: both a and b need to be initialized as arrays rather than char
    bug 2: len=strlen(a) will not work, since there is no string length for a initially
    bug 3: one cannot assign...
  12. Replies
    27
    Views
    4,045

    these are random selected code for interview...we...

    these are random selected code for interview...we need to get answer and discuss...
  13. Replies
    22
    Views
    4,169

    downloaded and installed.

    downloaded and installed.
  14. Replies
    27
    Views
    4,045

    i am going to interview somebody based on these...

    i am going to interview somebody based on these questions...
  15. Replies
    22
    Views
    4,169

    what version i need to download? ...

    what version i need to download?

    http://gcc.gnu.org/
  16. Replies
    27
    Views
    4,045

    i don't need helloworld to learn C. i code enough...

    i don't need helloworld to learn C. i code enough language....just forgot C...
  17. Replies
    12
    Views
    2,565

    thanks... learned something.

    thanks...

    learned something.
  18. Replies
    22
    Views
    4,169

    Microsoft Visual Studio Express Edition is bulky...

    Microsoft Visual Studio Express Edition is bulky compiler. i installed...this tool got a learning curve.

    i want a light weight, less resource, free C compiler to learn C...

    i am not going code...
  19. Replies
    27
    Views
    4,045

    Please help me learn C.

    Please help me learn C.
  20. Replies
    12
    Views
    2,565

    i am learning C for a project...forgot c...no...

    i am learning C for a project...forgot c...no touch for 10 years now.
  21. Replies
    22
    Views
    4,169

    Thanks...Please help me debug this code.. what...

    Thanks...Please help me debug this code..

    what compiler i need to use?.

    i put this code in miracle C compiler...gives me bug.
  22. Replies
    12
    Views
    2,565

    thanks i am not a C person..I am working as...

    thanks

    i am not a C person..I am working as SQL DBA.


    modified indent style.. what is c indent style?.

    what compiler i need to use to compile this code?
  23. Replies
    27
    Views
    4,045

    zip two strings together

    Code intended to "zip" two strings together.
    (Some input cases are not defined in this code.)

    What are bugs in the code?. How to fix bugs?.




    char *zip(char *a, char *b) {
    char *result;
  24. Replies
    22
    Views
    4,169

    n-th element of the fibonacci sequence

    n-th element of the fibonacci sequence.
    What are the bugs in below code and how to fix?.



    int fib(int n) {
    int tmp;
    if (n == 0) return 0;
    if (n == 1) return 1;
    tmp = fib(n-2);
  25. Replies
    12
    Views
    2,565

    what are the bugs in this code..please help me.

    This code is intended to merge, two sorted, linked lists into a single sorted, linked list: it is supposed to take two lists as input and destructively modify them so that at the end, they form a...
Results 1 to 25 of 25