Search:

Type: Posts; User: ALLRIGHT

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,417

    how to create diffrent sound frequencies

    i know there is a sound function
    but that is best for beepeing as far as i know
    i have seen in modren games drum beats are played and all sorts of music
    i dont wanna use a wave file or any file...
  2. Replies
    18
    Views
    6,065

    understanding pointers

    read this suggestion
    understanding pointers

    forget the word pointer for a moment.
    consider this.
    int num1;
    here num1 is a variable which is an integer.
    which would hold the values of...
  3. Replies
    3
    Views
    1,009

    simple

    pLcd is a variable of struct RGB.
    infront of whatever value you will put
    (rgb *) it would convert that value to rgb type.
    like int num;
    (rgb *)num;
    num was earlier an integer now it is pointer...
  4. Replies
    3
    Views
    2,065

    /* i will try to explain your query this way;...

    /*
    i will try to explain your query this way;
    char *strcpy(char *to_string, const char *from_string);
    in above line is the declaration of the function strcpy;
    normally fuctions are used to return...
  5. Replies
    2
    Views
    1,964

    yes pointers only hold address in them or we can...

    yes pointers only hold address in them or we can say the value
    held by a pointer is address to some memory location.
    why do we malloc?
    when ever you declare a pointer suppose
    int *num;
    now when...
  6. Replies
    3
    Views
    3,102

    not what i want

    the functions you have given are for files
    i am not using files
    i want to store an independent node on harddisk
    as i understand i might have to access fat for that
    but i dont know
    i dont...
  7. Replies
    11
    Views
    1,744

    some observations

    /*
    as you wrote "but when I try to compare it with -1 it
    doesnt work and I don't know why."
    going through your programm there are certain things which
    would be best to ...
  8. Replies
    3
    Views
    3,102

    how to store a node on hard disk

    when we make a node while programming as soon as the programm finishes it is lost or so to say. at which address
    was the node stored cant be know ,unless those address were being stored in some...
  9. Replies
    1
    Views
    6,589

    rom/bios routines

    as little i know is that operating systems uses rom/bios routines to work with the hardware and in C we can directly access these routines and do the needful by passing software interrupts using...
Results 1 to 9 of 9