Search:

Type: Posts; User: logicwonder

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,769

    I wrote a small program which impliment...

    I wrote a small program which impliment inheritance but still the same problem is there. Does Borland C++ (dos mode) does not support inheritance (only Borland C++ (win32) support inheritance)? or do...
  2. Replies
    5
    Views
    1,769

    there is no problem with the code since it works...

    there is no problem with the code since it works in Dev cpp, MSVC and even in Borland C++ (Win32 mode). The question how can I do inheritance in Borland C++ (Dos mode).
  3. Replies
    5
    Views
    1,769

    Inheritance problem

    I used Inheritance in my program which was compiled by Borland C++ 5.02 compiler in DOS mode. But a runtime error occurs and the class object cannot be created. I tried the same program in Win32...
  4. Replies
    2
    Views
    2,287

    Object Oriented Project

    I am required to do an object oriented mini project in C++. Can anyone give me the some ideas, web links, or some good book names? :)
  5. Replies
    2
    Views
    2,287

    Binary tree display

    How can I display a binary tree showing its real structure like.
    Can any one suggest an algorithm for this purpose :confused:



    5

    ...
  6. Replies
    12
    Views
    1,962

    Thanks Salem, Richie T, laserlight . I think I...

    Thanks Salem, Richie T, laserlight . I think I may stick onto int main()
  7. Replies
    12
    Views
    1,962

    See this MSDN link too: ...

    See this MSDN link too:

    http://msdn.microsoft.com./library/default.asp?url=/library/en-us/vclang98/HTML/_pluslang_program_startup.3a_.the_main_function.asp
  8. Replies
    12
    Views
    1,962

    Do we need rethinking?

    As said in the FAQ section,

    main() function should always return int.

    But this link makes me rethink:

    http://homepages.tesco.net/~J.deBoynePollard/FGA/legality-of-void-main.html

    please...
  9. Replies
    3
    Views
    962

    textbox is a form object in Visual C++ .NET...

    textbox is a form object in Visual C++ .NET programming (similar to the one in Visual Basic).
  10. Replies
    3
    Views
    962

    Visual C++ doubt

    Hey I am new to the Visual C++ 2005.
    When working on windows forms how can I accept integer variables from user entered on a text box and how to display an integer value on a text box?
    ...
  11. Replies
    5
    Views
    5,544

    You can do this in more simpler!

    You can do this in more simpler!
  12. Replies
    4
    Views
    6,284

    Thanks Slacker.

    Thanks Slacker.
  13. Replies
    4
    Views
    6,284

    Does that mean I dont need to bother about space...

    Does that mean I dont need to bother about space complexity while implimenting sorting and searching algorithms as C programs?

    Thanks CornedBee
  14. The problem is with your code. You are calling a...

    The problem is with your code. You are calling a function with char pointer argument and when you call the function, you are not calling it with the right arguement.

    Pointer cannot point to the...
  15. Replies
    4
    Views
    6,284

    Algorithm Complexity

    I have been going through sorting and searching algorithms and their implimentations in C language.

    I found two terms Time complexity & Space complexity. But most of the sorting and searching...
  16. Replies
    30
    Views
    6,252

    Well friends thank you for all your efforts. It...

    Well friends thank you for all your efforts. It sad C language does not provide a simple & effective method for validating an integer input.
  17. Replies
    30
    Views
    6,252

    Thank You Slacker for your effort. But I dont...

    Thank You Slacker for your effort. But I dont think this is effective.
    As you know, most of the programs accept an integer using scanf and an invalid entry from the user can make your program fail....
  18. Replies
    30
    Views
    6,252

    Zuk the code is too long for such a simple...

    Zuk the code is too long for such a simple operation.
  19. Replies
    30
    Views
    6,252

    Let me explain it more clearly Condider the...

    Let me explain it more clearly

    Condider the code:


    #include<stdio.h>

    int main(void)
    {
    int n;
  20. Replies
    30
    Views
    6,252

    Does any one have an effective solution to this?

    Does any one have an effective solution to this?
  21. Replies
    30
    Views
    6,252

    The solutions treat entries like 12h,12j2 .... as...

    The solutions treat entries like 12h,12j2 .... as numbers.
    I need a simple filter for these too.
  22. Replies
    30
    Views
    6,252

    But friend, You shold note the point that if...

    But friend,

    You shold note the point that if the input is lik 12a,12ad2 (number followed by alphabet or alphabet between numbers)
    the function isdigit() tells that they are integers. But...
  23. Replies
    30
    Views
    6,252

    Valid Number

    How can you validate a number input by a user. The object is to avoid wrong entries like abc, iab, ab1, a1b. I have got a lengthy method. Is there any simple method?
  24. Replies
    13
    Views
    2,435

    use the function flushall()

    use the function flushall()
  25. Replies
    18
    Views
    3,109

    Thank you everyone for ur contributions.

    Thank you everyone for ur contributions.
Results 1 to 25 of 53
Page 1 of 3 1 2 3