Search:

Type: Posts; User: Dev

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: Problem with this?

    by Dev
    Replies
    6
    Views
    1,056

    What a logic.

    What a logic.
  2. Thread: C compilers

    by Dev
    Replies
    10
    Views
    1,327

    Just thought that he may be looking for an IDE....

    Just thought that he may be looking for an IDE. As many people who are new to programming dont know difference between compiler and IDE. This may or may not be the case with this post.

    But who...
  3. Thread: Problem with this?

    by Dev
    Replies
    6
    Views
    1,056

    Whatever is the number of rows , that should be...

    Whatever is the number of rows , that should be taken as your main FOR loop. And try to analyse the pattern of what is required.

    See there are alternatively 4 and 3 stars. So set one boolean...
  4. Replies
    8
    Views
    20,049

    Type casting. Promote integers to long.

    Type casting. Promote integers to long.
  5. Thread: ignoring repitions

    by Dev
    Replies
    4
    Views
    807

    Try some coding your self. And then if you...

    Try some coding your self.

    And then if you have doubt then post it here.

    Because unless you try you can't understand the things.
  6. Thread: C compilers

    by Dev
    Replies
    10
    Views
    1,327

    Probably you may be looking for some IDE. An...

    Probably you may be looking for some IDE.

    An IDE is different from the compiler. And IDE is not a compiler.

    If you want good IDE for Windows programming than in free things Dev C++ is good and...
  7. Replies
    7
    Views
    3,722

    Future of Windows API programming ?

    I just want to know what's the future of Windows API programming.

    After the arrival of .NET platform , Is API programming going to become obsolete or completely useless ?
  8. Thread: .net

    by Dev
    Replies
    2
    Views
    907

    www.amazon.com Buy some book

    www.amazon.com

    Buy some book
  9. Thread: window manager

    by Dev
    Replies
    2
    Views
    1,394

    Search the web there are lots of tutorials and...

    Search the web there are lots of tutorials and resources available.
  10. Replies
    3
    Views
    2,181

    I am not using Borland C++ compiler. But you can...

    I am not using Borland C++ compiler. But you can check the compilers documentation for the source level debugging option.

    As in gcc compilers. If you add -ggdb option while compiling we get source...
  11. Replies
    3
    Views
    2,118

    Or you can just pass the base address of the 2d...

    Or you can just pass the base address of the 2d array and number of rows and columns of that array.

    And then implement the logic to get to particular element in the array in your function.
  12. Replies
    12
    Views
    2,799

    Right As Xoid said Use structures And do binary...

    Right As Xoid said Use structures And do binary input output with file.
    Use functions such as fread() and fwrite() to read or write complete structures in and out of a file.
  13. Replies
    3
    Views
    2,181

    Add that debug parameter to CFLAGS.

    Add that debug parameter to CFLAGS.
  14. Replies
    4
    Views
    1,406

    Such thing had happened with me also while...

    Such thing had happened with me also while installing lan card driver in Windows 95.

    When I installed the drivers for my lan card the system on rebooting said that the device attached to the...
  15. Replies
    5
    Views
    5,355

    Then start learning Direct X.

    Then start learning Direct X.
  16. Replies
    5
    Views
    2,735

    This Line : pV=(char far*) 0xb8000000L; Here...

    This Line : pV=(char far*) 0xb8000000L;

    Here 0xb8000000L is the base address of Text Mode video memory.


    This Line : pV+=row*160+col*2;

    Here The Text mode is of 80 X 25 size. And each...
  17. Replies
    2
    Views
    1,494

    Download Book from this site ...

    Download Book from this site

    http://www.drpaulcarter.com/pcasm/

    It's really useful if you want to learn about mixing assembly programs with C.

    Uses NASM as assembler.
  18. Replies
    5
    Views
    5,355

    Yes ANSI is a set of standards for the C language...

    Yes ANSI is a set of standards for the C language and not a library.

    If you want to work on graphics then you can start with Borland's BGI library. It's available with Borland's Turbo C or Turbo...
  19. Replies
    2
    Views
    3,815

    See ShellExecute() if that is what you are...

    See ShellExecute() if that is what you are looking for.
  20. Replies
    2
    Views
    2,036

    www.7-zip.org Taken from Help file Command...

    www.7-zip.org

    Taken from Help file

    Command Line Syntax
    7z <command> [<switch>...] <base_archive_name> [<arguments>...]

    <arguments> ::= <switch> | <wildcard> | <filename> | <list_file>...
  21. Replies
    2
    Views
    2,036

    Look out for 7-Zip. It's an open source...

    Look out for 7-Zip.

    It's an open source software and allows your programs to call its command line version for doing zip unzip / rar unrar.

    It works with some 6-7 compressed formats.
  22. Thread: strcpy

    by Dev
    Replies
    2
    Views
    1,439

    C doesn't check array bounds. So if you just...

    C doesn't check array bounds. So if you just declare as char * or in array fashion like char str[3] that will not do if the string to be copied is of different size.


    So best way is to declare a...
  23. Thread: convertion

    by Dev
    Replies
    2
    Views
    749

    If you are do it yourself type then take some...

    If you are do it yourself type then take some time as reference. Say twelve at night as 0.

    Then convert both times into minutes. And calculate difference then convert difference back into hours...
  24. Thread: Enter Key

    by Dev
    Replies
    3
    Views
    2,056

    I am just asking it for knowldge if it can be...

    I am just asking it for knowldge if it can be done or not. And if yes then how.

    I also know that if you will give user message "Press Enter to Continue " then he will press Enter only not other...
  25. Replies
    2
    Views
    1,185

    Look here ...

    Look here

    http://www.laynetworks.com/users/webs/asm6.htm
Results 1 to 25 of 59
Page 1 of 3 1 2 3