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

Search:

Type: Posts; User: basanta

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Re: Choosing Future Path Walking with C++[Need Helpful Guide]

    Searching employment in beginning may be hard for me because, nowadays employer gives first priority to Working Experience and second importance to the Academic Qualification. But, i am learning...
  2. Re: Choosing Future Path Walking with C++[Need Helpful Guide]

    I have Emailed you with giving my email address. Kindly check your Email in Codeguru once..
  3. Re: Choosing Future Path Walking with C++[Need Helpful Guide]

    I have learned C first before learning C++.
  4. Choosing Future Path Walking with C++[Need Helpful Guide]

    Greeting Codeguru world!
    I posted my thread in this section because i thought it might be related to (Non Visual C++ Issues). I would like to apologize if this is wrong section.

    I had been...
  5. Re: Link Between (STL) Container and (Fstream) File I/O

    Just reviewed the tutorial and i got the following information :

    "STL Collections

    The serialization library contains code for serialization of all STL classes. Hence, the reformulation below...
  6. Re: Link Between (STL) Container and (Fstream) File I/O

    I already exercised my C++ skills in File I/O applying Array Index Container. Afterward, i asked myself, "Is it possible to applying STL Container?". So, my plan slightly changed to change the...
  7. Re: Link Between (STL) Container and (Fstream) File I/O

    Thanks for the response, and i got to know a bit what is serialization. My intention is to save the object in binary form in file.



    So, the library from boost serialization can read the binary...
  8. Link Between (STL) Container and (Fstream) File I/O

    Greeting Codeguru world.
    A small question in my mind is ringing me time to time. I did some of the projects using STL container and it is pretty much efficient to retrieve the data's information...
  9. Replies
    2
    Views
    1,374

    [Begineer] Template Issue!

    Greeting CodeGuru World.
    I am C++ beginner programmer. I just learned most of the fundamentals of C++. This is my neither any college project nor any home assignment. This is what i decided to work...
  10. Replies
    6
    Views
    1,702

    Re: Returning Operator to Switch Statement

    I used global variable for input where user input int/int in console screen and 'c' is for user choice like 2/5 or 2:5..
    Const-correct? Pardon. It mean, my classes are not constant?
    Yah, i am...
  11. Replies
    6
    Views
    1,702

    Re: Returning Operator to Switch Statement

    Couldn't not understand. I was just trying to print the error message until user give right operator from list. I am pretty much confused can switch in main recognize the operator return from this...
  12. Replies
    6
    Views
    1,702

    Returning Operator to Switch Statement

    Greeting Codeguru world! Namaste!

    I planned to build a four function fraction calculator adding some advance feature like error checking in input so that user are prompted to input correct numbers...
  13. Re: Error Using 'this' pointer in Static Members Function

    So, it will solve if i remove static to member function writeIn() and readOut() functions ? But, it supposed to create error in main() function..
  14. Error Using 'this' pointer in Static Members Function

    Greeting Codeguru world.
    I am trying to use 'this' pointer but i am confused why 'this' pointer is not available for static member functions.

    Any suggestion with correction ?


    #include...
  15. Re: Output Sorting Error Using Pointer Notation[Beginners Question]

    Thanks for the suggestion, I actually didn't returned float value.
    I modified my class Person

    Modified Code

    class person
    {
    protected :
    string name;
    float salary;
  16. Output Sorting Error Using Pointer Notation[Beginners Question]

    Greeting Again Codeguru World!

    My code compiled well(After long Messing up with my head).
    But, i still not satisfied of my output as i expected.
    My code ought to sort the object of person...
  17. Replies
    10
    Views
    4,997

    Re: Postfix Operator Overloading Error!

    Sir, I am Using Code::Block v10.05. I actually don't know what debugging actually means. I simply write code and run it pressing 'F9' key. Can you give me some information about "how to debugg"....
  18. Replies
    10
    Views
    4,997

    Re: Postfix Operator Overloading Error!

    Oh my God. I am so stupid. Actually Sir, I am learning C++ OOP just since 1 month ago so, i make some common errors.

    Millions of thanks Paul Sir for signalling my error! Now, i got output as i...
  19. Replies
    10
    Views
    4,997

    Re: Postfix Operator Overloading Error!

    Thnx Rechard Sir, With your suggestion, i rebuilded my code and it compiled well with (0 error and 0 warning) where at object i removed '=' sign and i just planned to increase c1 & c2 twice and again...
  20. Replies
    10
    Views
    4,997

    Re: Postfix Operator Overloading Error!

    Edited.
  21. Replies
    10
    Views
    4,997

    Postfix Operator Overloading Error!

    Gretting Codeguru World!
    Recently, i successfully overloaded postfix operator to class counter by using Object and Class. Now, i want to overload same postfix operator to Inheritance. I created my...
  22. Replies
    10
    Views
    1,097

    Re: Switch Output Error

    I did tried with a single class 'employee' but, it seems creating more complexity in single class. So, i created new class called 'employee2' to get compensation from user and their period type using...
  23. Replies
    10
    Views
    1,097

    Re: Switch Output Error

    I did tried with a single class 'employee' but, it seems creating more complexity in single class. So, i created new class called 'employee2' to get compensation from user and their period type using...
  24. Replies
    10
    Views
    1,097

    Re: Switch Output Error

    It is only the class of my program. The Whole Program is

    #include <iostream>
    using namespace std;

    enum period {hourly,weekly,monthly};
    const int LEN = 80;

    class employee
    {
  25. Replies
    10
    Views
    1,097

    Switch Output Error

    Greeting Codeguru World.
    I have a question related to switch statement, which the switch in class employee2 gives me error at output. Program compiled well. I am using Code::Block Compiler V10.5. I...
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured