Search:

Type: Posts; User: Linked_List

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. How to write a simple boot program in C ?

    Hi guys. Can anyone show me a way with How to Write a program which can be executed at the time of Booting ?
    Simply I want to write a C program which I can use to display my Name at the Time of...
  2. Replies
    4
    Views
    16,295

    If you want to remove #include ...

    If you want to remove
    #include<process.h> Simply remove the
    exit(1); from your code as you already used
    break; //in case 'e'
    It'll work fine.
  3. Thanks

    Thanks
  4. Replies
    23
    Views
    2,398

    your wish.........

    your wish.........
  5. Replies
    23
    Views
    2,398

    check the above link.. I've already posted the...

    check the above link.. I've already posted the piece of code.
  6. Replies
    23
    Views
    2,398

    look at this thread for better understanding of...

    look at this thread for better understanding of the problem
    http://cboard.cprogramming.com/c-programming/151266-explanation-working-char-%2A-type-syntax.html
  7. Well in that case... Are the two below lines...

    Well in that case...
    Are the two below lines results into similar output.??

    fgetws((wchar_t *)name,length,stdin); //with input of 123
    and

    (wchar_t *)name=L"123";
    If not.. then how to pass...
  8. Explanation for working of (char *) type syntax

    It feel bad but I got stuck with a noobish type syntax, need explanation.


    LPARAM name; //have a pre defined value
    LPARAM length; //have a pre defined value
    fgetws((wchar_t...
  9. Replies
    23
    Views
    2,398

    Nothing seems to be working. :'(

    Nothing seems to be working. :'(
  10. Replies
    23
    Views
    2,398

    ok. Let me try to elaborate a little... ...

    ok. Let me try to elaborate a little...

    wchar_t *fgetws(wchar_t *WS, size_t n, FILE *stream);
    The fgetws() function shall read characters from the stream, convert these to the corresponding...
  11. Replies
    23
    Views
    2,398

    you get it right. ^_^

    you get it right. ^_^
  12. Replies
    23
    Views
    2,398

    Not working.

    Not working.
  13. Replies
    23
    Views
    2,398

    Here, I mean a simple 'string' or 'char...

    Here, I mean a simple 'string' or 'char pointer'.....
    Like

    char *p;
    string s="anything";
  14. Replies
    23
    Views
    2,398

    I'm writing a project where the input stream is...

    I'm writing a project where the input stream is needed to pass through fgetws() for generating its UNICODE which is later sent to a .dll function. But Now I want to provide that stream from the code...
  15. Replies
    23
    Views
    2,398

    Need Help with fgetws() stream issue

    hi guys. While writing a program I need to use the function fgetws() which has following parameters

    wchar_t *fgetws(wchar_t *WS, size_t n, FILE *stream);
    Now the problem is, I need to pass a...
  16. Replies
    2
    Views
    686

    Facing a .dll issue.

    Hi guys. Recently I created a program which use the functions from an external .dll file.
    But when I execute the .exe file after removing the .dll from the folder then it ends up with an error the...
  17. How to Add a External Library in the C Program ?

    Hi guys. Need help in adding a DLL or External Library (.lib) inside the C program. It'll be more helpful if someone provide a few lines sample code.

    Compiler: Borland C++
    Platform: Windows...
  18. Replies
    17
    Views
    13,383

    Looks cool. I'm sure you'll provide a...

    Looks cool. I'm sure you'll provide a documentation sooner. LOL :p
  19. Replies
    17
    Views
    13,383

    dude.. with due respect.. I know my...

    dude.. with due respect.. I know my capabilities.. and how to tackle my weak sections.. I'm not pretty good with phrasing questions so I always write them in a noobs way.. I always learn and...
  20. Replies
    17
    Views
    13,383

    @whiteflags.. I'm on the move now.. Thanks...

    @whiteflags..
    I'm on the move now.. Thanks bro..!!
  21. Replies
    17
    Views
    13,383

    Thanks again. Can you help me with a basic code...

    Thanks again.
    Can you help me with a basic code that how to use/call the unrar.dll or any third part library in a C++ program.??
    Just need a very basic sample code to get started.
  22. Replies
    17
    Views
    13,383

    How to Extract .RAR files with C++

    Hi guys. I want to write a C++ program to extract the .RAR files. I got the sources of unrar from their official website WinRAR archiver, a powerful tool to process RAR and ZIP files but have no idea...
  23. Replies
    3
    Views
    1,474

    Thanks guys. Seems the explanation is working...

    Thanks guys. Seems the explanation is working fine with different values. :)
    Well I got this code while analyzing an obfuscation.

    Thanks a ton.
  24. Replies
    3
    Views
    1,474

    Need Help in Understanding this Code

    Hi guys. I got this code as a part of large one. I'm not able to understand its proper working.


    int main()
    {
    int a,b=10;
    a="" [b+++11]; //Need Explanation
    printf(" %d ",a);
    a="Hello World"...
  25. Replies
    3
    Views
    1,957

    Your code has following errors: wrong...

    Your code has following errors:

    wrong declaration of array inside main


    char alpha[p];
    char conv[f];

    and..
    The if condition
Results 1 to 25 of 29
Page 1 of 2 1 2