Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Saravanan Sundaresan

@Saravanan Sundaresan
About
Posts
10
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • What is the best programming IDE for JAVA ?
    S Saravanan Sundaresan

    I'm also using Eclipse IDE

    Free Tools question java visual-studio

  • How to master C++
    S Saravanan Sundaresan

    Make your hands dirty by entering into solving some problems

    C / C++ / MFC learning csharp c++ java javascript

  • Right method of swapping arrays and classes using pointers
    S Saravanan Sundaresan

    :thumbsup:

    C / C++ / MFC com data-structures tutorial lounge

  • CString Concatenation question
    S Saravanan Sundaresan

    :thumbsup:

    C / C++ / MFC performance help question

  • How to fix the invalide pointer problem
    S Saravanan Sundaresan

    Running with a memory leak detector can help?

    C / C++ / MFC help c++ com performance tutorial

  • In C++ compiler providing the default copy constructor ,then why do we need copy constructor
    S Saravanan Sundaresan

    May be it is orthogonal information, If we want to hide/restrict usage of default copy constructor, we need to provide override declaration in private section of class, and no definition for that. This ensures preventing usages of copy constructor

    C / C++ / MFC c++

  • concat two char * variables
    S Saravanan Sundaresan

    Here is the function as per your requirement:

    char* concat(const char* c1, const char* c2)
    {
    int size1 = 0, size2 = 0;

    for (int i = 0; c1\[i\] != '\\0'; i++)
    	size1++;
    for (int j = 0; c2\[j\] != '\\0'; j++)
    	size2++;
    
    char\* result = new char\[size1+size2\];
    
    for(int i=0; i<size1; i++)
    {
    	result\[i\] = c1\[i\];
    }
    
    for(int j = 0; j <= size2; j++)
    {
    	result\[size1+j\] = c2\[j\];
    }
    
    result\[size1+size2\] = 0;
    
    return result;
    

    }

    C / C++ / MFC help tutorial

  • MoveTextToTheBottom ! Help me
    S Saravanan Sundaresan

    Give your requirement in detail......

    C / C++ / MFC help question

  • add a tool bar
    S Saravanan Sundaresan

    check: http://www.codeproject.com/docking/toolbardialog.asp[^]

    C / C++ / MFC c++ question

  • Why it fails?
    S Saravanan Sundaresan

    I think, Null char to be added to p[12].

    C / C++ / MFC php com performance question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups