CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: indrajit_p1

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    3
    Views
    1,523

    Re: Read and write the values of file

    Dear mr.sam,

    please read the C language manual/reference text available to you for the behaviour of file handles after the execution of the specific file read/write functions that you are using....
  2. Replies
    2
    Views
    1,203

    Re: Having problems with objects and classes

    Dear Larry,

    If Paul's reply has worked for you, it is kind of mandatory in this forum to mark your thread as [RESOLVED] from your control panel.

    This is also a good practice. So do it right...
  3. Replies
    1
    Views
    1,080

    Re: Reading Input Real-Time

    char userInput = NULL; //userInput initialized

    /*******************************************************
    while userInput not equal to '.', '?', or carriage return and newline or just
    carriage...
  4. Replies
    3
    Views
    1,629

    Re: Random Number Generator Problems

    Herpestidae,

    To cut a long story short for you, this part of Nuzzle's reple says it all about your program.



    Also, if these replies have satisfied you, you should mark this thread as...
  5. Replies
    2
    Views
    1,513

    Re: Migration of Taskmate

    Hi Ravi,

    This question of your's has been placed in the wrong category. It should have gone into one of the microsoft related sub-forums. Please change the category and delete your post from this...
  6. Replies
    4
    Views
    736

    Re: Need veery uurgent help!

    Thanks Lindley,

    I think I was confusing some .NET, ASAP languages (available on Microsoft platforms) stuff, with C and C++.

    Or maybe some other language..

    nevermind.

    thanks a LOt for the...
  7. Replies
    4
    Views
    736

    Re: Need veery uurgent help!

    Huh?!

    though we sould have made this pretty exhaustive by now..

    but is there nothing like a

    std()
    printf(" ://net ", %d, %s, %c, ...);
    endl()
  8. Replies
    4
    Views
    736

    Need veery uurgent help!

    I was REALLY wondering, what is the list of the % characters in c.

    like %a, %%, etc.. ???

    can somebody Pleease provide me with an exhaustive list?

    please..
  9. Re: [RESOLVED] order of evaluation of condition expression.

    Meyer's is....can't find words ( all good words fall short of describing his metel).
    I
  10. Re: order of evaluation of condition expression.

    Thanks a LOT Graham and particularly laserlight for giving me the exact references.
    I
  11. [RESOLVED] order of evaluation of condition expression.

    Hi all,

    I have written some production level code assuming that if there is something like




    if ( condition A || condition B || condition C)

    or
  12. Replies
    10
    Views
    1,245

    Re: strange error!

    The error message says that it's not finding a match for the function while the match IS there. Should it rather not have made it clearer that a non-const function is being called on a const object...
  13. Replies
    10
    Views
    1,245

    Re: strange error!

    Hi all,

    The non-const workaround (which was a legally, morally, ethically [and in the light of the const problem, mathematically (I don't know about politics)] justified way of doing things)...
  14. Replies
    10
    Views
    1,245

    Re: strange error!

    Guru's thanks a TON for the help. I think I have a way to bypass the particular constness problem. so (with u'r help) that front is handled.

    but note one point..the compiler never complained...
  15. Replies
    10
    Views
    1,245

    Re: strange error!

    perfect!!

    don't feel like thinking of the solution after a long and heavily loaded day at office. and this is urgent.

    will deeply appriciate any help with that Lindley..
  16. Replies
    10
    Views
    1,245

    Re: strange error!

    No!

    there are no set functions in bu_tde_mti at all. All the overloaded set functions co-exist in bu_tde_mti_base.
    I
  17. Replies
    10
    Views
    1,245

    strange error!

    I will give out snippets of the production level code in my current project (regardless of the legal, moral, ethical, mathematical and political correctness of doing so).

    The is a class having a...
  18. Replies
    32
    Views
    5,202

    Re: Initializing an array data member?

    Hmm...

    This is turning interesting and educating.

    Lindley, your suggestion hardcodes the initializer list into the constructor. (??)

    Indrajit
  19. Replies
    32
    Views
    5,202

    Re: Initializing an array data member?

    hmm...

    I started in programming with Fortran and moved on to C. Always felt in those days that C++ is not really as good as it looks like.

    But the last 4/5 years on and off with C++ had the...
  20. Replies
    32
    Views
    5,202

    Initializing an array data member?

    Hi,

    Let's take a class A




    class A
    {
    char a[10];
  21. Replies
    6
    Views
    9,640

    Re: C++ program memory layout.

    Laserlight,

    err...I don't know Assembly. but thanks for u'r thoughts on this anyway.

    I

    p.s.: Zachheus and Paul, thanks for clarifying the issue for me.
  22. Replies
    6
    Views
    9,640

    Re: C++ program memory layout.

    someone please, PLEASE tell me where to say this so that everybody gets to hear it. mod, maybe this should be a part of forum answering guidelines.

    I have complained about this n times before and...
  23. Replies
    6
    Views
    9,640

    C++ program memory layout.

    Just like a C program memory is divided into four parts: data segment, code segment, stack and heap, I want to know if a C++ program has the same kind of memory layout (in my knowledge the answer is...
  24. Replies
    11
    Views
    1,104

    Re: struct questions.

    amidst all the crossfire of brilliant ideas and all that wisdom, this is the first time someone gave a REAL answer to my real question (which I made clear a little late). since the standards say that...
  25. Replies
    11
    Views
    1,104

    Re: struct questions.

    Hey Thanks! that option somehow skipped my mind. probably because I have written much less C++ code than I have read about the language.

    Thanks again.
    I
Results 1 to 25 of 96
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured