Click here to Skip to main content
15,904,817 members
Articles / Programming Languages / C++

Help Pointers and chars in C++;

Rate me:
Please Sign up or sign in to vote.
4.56/5 (2 votes)
13 Nov 2012CPOL 0  
Here you are only assigning the adress of x into name. And at the adress of x is the 'm' of "missak".yup::yup(char *x){ name = x;}Here the content of the adress "name" is printed. And the content is a single char. It's the letter 'm'.void yup::print(){ cout<<*name;...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
Years ago I programmed COM-DLLs in C/C++ for some VB6 guys. It was a remote service and alarming software for refrigeration systems.

Also developed software in WinCE (C/C++) for a remote gateway to connect to the refrigeration controllers via CAN-Bus.

Since 2009 more and more C# and .Net development.

Actually developer for intra logistic software.

Currently dominated by huge spaghetti code monster :-/

Comments and Discussions