Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SantoshNarayan

    Strange Friends

    A friend function means a non-member routine which has access to the private and protected members of a class. Friend is a keyword used within a class definition to let the class know that this routine can access its private or protected members which are not accessible from anywhere outside the...
  2. SantoshNarayan

    Passing Generic class objects to non-member routines ? How to ?

    The following code is in error. How can I pass generic class objects to non-member routines ? The compile time errors are : 1. Undefined symbol 'mytype'. 2. Cannot generate template specialization myclass<mytype>. 3. Undefined symbol 'myclass'. These errors are fired at the point where the...
  3. SantoshNarayan

    What is CCNA ?

    Obviously Cisco Certified Network Administrator. But what does it consist of ? What are the prospects ?
  4. SantoshNarayan

    Microsoft, C#, .NET and those persistent queries

    Is C# caught in some legal battles ? Will it get through ? Is there any concrete specification from Microsoft for .NET and C# ? Will Microsoft introduce new certifications or change its current line of certifications ?
  5. SantoshNarayan

    I recently came through a very stra

    I recently came through a very strange piece of text in some book which claimed that Template functions expand inline. Is this true though I highly doubt it ? template<typename mytype>void func(mytype val) { cout<<&quot;This is a simple template function &quot;<<val<<endl; } int main() {...
  6. SantoshNarayan

    I recently came through a very stra

    I recently came through a very strange piece of text in some book which claimed that Template functions expand inline. Is this true though I highly doubt it ? template<typename mytype>void func(mytype val) { cout<<&quot;This is a simple template function &quot;<<endl; } int main() { func(11)...
  7. SantoshNarayan

    C++ Certifications

    Can anyone tell me about good C++ certifications ?
  8. SantoshNarayan

    New to Assembly

    Please suggest some good books on Assembly. Since Assembly is platform specific though it gives an immense amount of power can there be cross-platform compatabilities ? Can anyone get me some good details about assembly ? I want to self-learn.

Part and Inventory Search

Back
Top