Difference(Urgent)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sanketbarot
    New Member
    • Sep 2006
    • 30

    Difference(Urgent)

    Hi, Friends


    What is the difference between Structure and Class in C++?
  • manontheedge
    New Member
    • Oct 2006
    • 175

    #2
    a struct by default is public and a class by default is private

    Comment

    • Banfa
      Recognized Expert Expert
      • Feb 2006
      • 9067

      #3
      a structs members by default are public and a classes members by default are private

      Comment

      Working...