Search:

Type: Posts; User: ampc

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,327

    for example , i have a removeable disk and its...

    for example , i have a removeable disk and its MBR data was broken, so i wannt use my program to modify it. i wanna use NtWriteFile, but it doesn't work
  2. Replies
    8
    Views
    1,327

    ReadFile can read the sectors ,but WriteFile can...

    ReadFile can read the sectors ,but WriteFile can not modify it
  3. Replies
    8
    Views
    1,327

    i wanna develop a data recovery software. i need...

    i wanna develop a data recovery software.
    i need to modify the error of sectors
  4. Replies
    8
    Views
    1,327

    access absolute sector

    how to i write sectors in win7
  5. Replies
    15
    Views
    5,355

    im afraid of missing a '=' in the middle of if

    im afraid of missing a '=' in the middle of if
  6. Replies
    15
    Views
    5,355

    i've improved the GetUnion function. ...

    i've improved the GetUnion function.


    LinkNode* GetUnion(LinkNode *head1, LinkNode *head2, LinkNode *head3)
    {
    LinkNode *p1 = NULL;
    LinkNode *p2 = NULL;
    LinkNode *p3 = NULL;

    ...
  7. Replies
    15
    Views
    5,355

    i mean list 1: 1 2 3 4, list 2: 3 4 5 6, then the...

    i mean list 1: 1 2 3 4, list 2: 3 4 5 6, then the union set is 1 2 3 4 5 6
  8. Replies
    15
    Views
    5,355

    maybe i didn't express clearly, i mean, i want to...

    maybe i didn't express clearly, i mean, i want to use two single link list to get their union set. The "GetUnion" function has logical error but i dont know how to fix it.
  9. Replies
    15
    Views
    5,355

    Get the Union Set in Single Link List

    hello everyone, i have a problem in blew program,i dont know how to get the union set without changing the head1. i want to put the union set in the head3.


    ...
  10. Replies
    5
    Views
    4,134

    [Data structure]----sequential list 4

    /************************************************************************/
    /* put the data of less than 0 in the front of the sequential */
    /* list,more than 0 is rear ...
  11. Replies
    5
    Views
    4,134

    [Data structure]----sequential list 3

    /************************************************************************/
    /* delete all the value between x and y in the sequential list */...
  12. Replies
    5
    Views
    4,134

    [Data structure]----sequential list 2

    /************************************************************************/
    /* delete all the value is x in the sequential list */...
  13. Replies
    5
    Views
    4,134

    [Data structure]----sequential list 1

    i'm studying data structure,so i want to show my exercises from the book,hope everyone help me improve my skill and optimize it.Thanks


    ...
  14. Thread: about char type

    by ampc
    Replies
    3
    Views
    1,608

    about char type

    i want to code with unicode , but im not sure that WCHAR and wchar_t which one is better
  15. Replies
    9
    Views
    1,924

    pBuf includes the content of my expression, and...

    pBuf includes the content of my expression, and in my main function i code:


    int main()
    {
    char cExpression[] = {"-2+4x^2-3"};
    char *szExpression = NULL;

    szExpression =...
  16. Replies
    9
    Views
    1,924

    thanks Bayint Naung, i now know how to code ^_^ ...

    thanks Bayint Naung, i now know how to code ^_^


    char * InitExpression(char *pExpression, char *pBuf)
    {
    char *p = NULL;

    pExpression = (char *)malloc(strlen(pBuf) + 1);
    p = pExpression;
  17. Replies
    9
    Views
    1,924

    now, i updated the code: char *...

    now, i updated the code:

    char * InitExpression(char *pExpression, char *pBuf)
    {
    char *p = NULL;
    int i = 0;

    pExpression = (char *)malloc(1);

    while ('\0' != *pBuf)
  18. Replies
    9
    Views
    1,924

    About malloc,realloc,pointer and array

    i have an expression in an array, i want the expression to omit space and tab characters and put it into an buffer,but i dont know how to go on to do it.





    #include <string.h>

    char *...
  19. Replies
    0
    Views
    887

    Creating a Up-down control

    i want to create a Up-down control without MFC,but my up-down control doesn't have a edit control,how should i do?
  20. Replies
    15
    Views
    16,603

    oh,thank you,now i turn it to gets/puts...

    oh,thank you,now i turn it to gets/puts functions, but i want to use unicode version,still error when i run it!


    struct List
    {
    TCHAR *data;
    struct List *next;
    };

    struct List...
  21. Replies
    15
    Views
    16,603

    aha.......what an important thing! but i...

    aha.......what an important thing! but i forgot,hehe,thank u very much~~~
  22. Replies
    15
    Views
    16,603

    about char* in struct

    hello everyone,i dont know how to assign the char* in struct,

    struct List
    {
    char *data;
    struct List *next;
    };

    struct List *InputData(struct List *head)
    {
  23. Replies
    6
    Views
    4,590

    OpenOffice can open MS word,so you can obtain...

    OpenOffice can open MS word,so you can obtain openoffice's code to study it
Results 1 to 23 of 23