Search:

Type: Posts; User: Meshal

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,413

    thanks all guy`s , the problem fixed when i...

    thanks all guy`s , the problem fixed when i change the char to unsigned char , i couldn`t notice that ..
  2. Replies
    6
    Views
    1,413

    point to the first char in a the input file ??

    point to the first char in a the input file ??
  3. Replies
    6
    Views
    1,413

    strange negative numbers ?!!

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

    int main()
    {

    FILE *out;
    FILE *in;
    char *ce;
  4. Replies
    6
    Views
    2,854

    thanks Salem ur the best here ! and i am sure...

    thanks Salem ur the best here ! and i am sure that &#37;100 that you will answer my questions ..
  5. Replies
    6
    Views
    2,854

    Ops, sorry i found the problem .. the problem...

    Ops, sorry i found the problem ..

    the problem is that i print out the address looooolz... i forget to do this
    *ch

    thanks zacs for help
  6. Replies
    6
    Views
    2,854

    there is an error when i use fread() , here`s the...

    there is an error when i use fread() , here`s the problem


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

    int main(int argc,char *argv[])
    {
  7. Replies
    6
    Views
    2,854

    is there another way other than fread() ??

    is there another way other than fread() ??
  8. Replies
    6
    Views
    2,854

    how can i read a unicode char from a file ?

    when i save a file as Unicode every char will be 2-byte long

    how can i read it from a file ??

    if i use for example


    FILE *fp;
    c = getc(fp)
  9. Replies
    2
    Views
    6,096

    try to not use casting so it will be like this :...

    try to not use casting so it will be like this :

    list_t **list_array = malloc(sizeof(list_t*) * max_size);
  10. Replies
    8
    Views
    2,037

    thanks guys , finally i got every things works Ok...

    thanks guys , finally i got every things works Ok .. "thanks word" is not enough to thank you..

    and i appreciate your help all of you .

    sorry my english is bad ,
  11. Replies
    8
    Views
    2,037

    and if i have a struct that contain multiple id`s...

    and if i have a struct that contain multiple id`s .. like this :


    struct s{
    char *id[4] ;
    }MyArray[5];

    can i do what salem say`s .. or it will be a problem

    i mean is this true :
  12. Replies
    8
    Views
    2,037

    thanks Salem , and is there a way to do it...

    thanks Salem , and is there a way to do it dynamicly ??
  13. Replies
    8
    Views
    2,037

    this is More advance exmaple : ...

    this is More advance exmaple :


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

    #define MAX2 100

    struct s
  14. Replies
    8
    Views
    2,037

    Array of structs

    is this possible ??


    struct s{
    char *name;
    }MyArray[5];

    is this will create array of structs or i am wrong because after compiling it i get the same answer ..

    exampl when i put to the...
  15. Replies
    13
    Views
    1,928

    i am very thanks full for all of you guys , my...

    i am very thanks full for all of you guys , my problems in linked lists now fixed, after i try some tests ..

    i am so happy right now ..

    and i am sorry for bothering you dudes
  16. Replies
    13
    Views
    1,928

    thanks so much citizen your post help me alot.. @...

    thanks so much citizen your post help me alot.. @

    and what i really want is that i have 2 pointers

    first one name root
    and the second one name t

    the t is a list where i insert something to...
  17. Replies
    13
    Views
    1,928

    so you mean i cann`t make the root point to the t...

    so you mean i cann`t make the root point to the t ?!!

    and i must malloc the root before make it point to t .. is this true!
  18. Replies
    7
    Views
    1,702

    99% percent ahmet858585 == Meursault

    99&#37; percent
    ahmet858585 == Meursault
  19. Replies
    13
    Views
    1,928

    the problem : the t is a pointer to a struct...

    the problem :

    the t is a pointer to a struct and the root is another pointer to the struct

    if i malloc the t in the second time i will lose the first node and if i make this
    root=t;
    to keep...
  20. Replies
    13
    Views
    1,928

    yes i do that ,but the code still not fixed

    yes i do that ,but the code still not fixed
  21. Replies
    13
    Views
    1,928

    thanks for help

    thanks for help
  22. Replies
    13
    Views
    1,928

    your post dosn`t fix my problems !!

    your post dosn`t fix my problems !!
  23. Replies
    13
    Views
    1,928

    simple problem in a linked list !

    i try hard but i couldn`t fix the problem?!

    This is the source code


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
  24. Replies
    11
    Views
    4,083

    so how can binary tree or binary search...

    so how can binary tree or binary search programmed in C# without using real pointers ?!!
  25. Replies
    11
    Views
    4,083

    how i can reference to point to the bucket ?? ...

    how i can reference to point to the bucket ??

    can you show me an example ?!
Results 1 to 25 of 90
Page 1 of 4 1 2 3 4