sachin mundhra


{ City } pune
< Country > india
* Profession * sr technical associate
User No # 62706
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 2
Questions / { sachin mundhra }
Questions Answers Category Views Company eMail




Answers / { sachin mundhra }

Question { 3171 }

1.Get string1,string2,string3
1.add string1 and 2,string1 and 3.
2.replace vowels with T
3.count number of T.
4.remove T
5.COPY string1 to stringf.
6.restore string1.
print the following
1.Number of T
2.StringF
3.string1+string2+string3

Use pointers and functions


Answer

Use CString class for the same.

Is This Answer Correct ?    0 Yes 0 No

Question { CTS, 3638 }

What are function poinetrs? where are they used?


Answer

CALLBACK Function.

Is This Answer Correct ?    0 Yes 0 No


Question { Tech Mahindra, 3877 }

Hi All,
i am new for VC++ SDK.
i want to get the IP Address of all the External device
connected with my local machine.please give the code
Regards,
Praveer


Answer

Hi,

Open the command prompt. Type netstat -a -n

Now you can parse the output where there will be a local
address and Foregin Address.

Regards
Sachin Mundhra

Is This Answer Correct ?    0 Yes 2 No

Question { Infosys, 4084 }

Live example for static function?


Answer

Live Example for static function is Singleton class.

Static Method is used and called to get the instance of
class.

class Base
(
private:
Base()
public:
static Base* GetObject() // This is a static method
};

Is This Answer Correct ?    4 Yes 0 No