Click here to Skip to main content
15,900,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSending Message through VC Pin
MadBoyz18-May-06 20:27
MadBoyz18-May-06 20:27 
AnswerRe: Sending Message through VC Pin
ThatsAlok18-May-06 21:50
ThatsAlok18-May-06 21:50 
Question_itot and _iota Pin
baldha rakesh18-May-06 20:08
baldha rakesh18-May-06 20:08 
AnswerRe: _itot and _iota Pin
Ganesh_T18-May-06 20:17
Ganesh_T18-May-06 20:17 
GeneralRe: _itot and _iota Pin
baldha rakesh18-May-06 23:54
baldha rakesh18-May-06 23:54 
AnswerRe: _itot and _iota Pin
_AnsHUMAN_ 18-May-06 20:19
_AnsHUMAN_ 18-May-06 20:19 
GeneralRe: _itot and _iota Pin
baldha rakesh18-May-06 23:58
baldha rakesh18-May-06 23:58 
GeneralRe: _itot and _iota Pin
_AnsHUMAN_ 19-May-06 1:11
_AnsHUMAN_ 19-May-06 1:11 
What is the platform?

I am providing the code for the operation of _itoa(*,**,10);
* denotes integer variable
** denotes char*

<br />
char *convertinttochar(int num)<br />
{<br />
	int ix=0;<br />
	int jx=0;<br />
	int kx=0;<br />
	int xones=0;<br />
	char xtemp[5];<br />
	char xans[5];<br />
	while (num!=0) <br />
	{<br />
		xones=num%10;				<br />
		xtemp[i]=(char)(xones+48);<br />
		num=num/10;		<br />
		ix++;			<br />
	}<br />
	for(jx=ix-1;jx>=0;jx--) <br />
	{<br />
		ans[kx]=temp[jx]; 	<br />
		kx++;<br />
	}<br />
	ans[ix]='\0'; 		<br />
   return (char *)ans;<br />
<br />
} 


Somethings seem HARD to do, until we know how to do them.
Wink | ;-)
_AnShUmAn_



-- modified at 7:13 Friday 19th May, 2006
GeneralRe: _itot and _iota Pin
baldha rakesh19-May-06 3:39
baldha rakesh19-May-06 3:39 
AnswerRe: _itot and _iota Pin
Laxman Auti18-May-06 20:45
Laxman Auti18-May-06 20:45 
AnswerRe: _itot and _iota Pin
David Crow19-May-06 3:38
David Crow19-May-06 3:38 
QuestionCan I use ReadFile/WriteFile for USB device's handle? Pin
Takanobu Maekawa18-May-06 20:07
Takanobu Maekawa18-May-06 20:07 
AnswerRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Cedric Moonen18-May-06 20:34
Cedric Moonen18-May-06 20:34 
GeneralRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Eytukan18-May-06 21:36
Eytukan18-May-06 21:36 
GeneralRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Cedric Moonen18-May-06 21:39
Cedric Moonen18-May-06 21:39 
GeneralRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Eytukan18-May-06 21:45
Eytukan18-May-06 21:45 
GeneralRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Cedric Moonen18-May-06 21:47
Cedric Moonen18-May-06 21:47 
GeneralRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
Eytukan18-May-06 21:57
Eytukan18-May-06 21:57 
AnswerRe: Can I use ReadFile/WriteFile for USB device's handle? Pin
NiceNaidu18-May-06 23:34
NiceNaidu18-May-06 23:34 
QuestionWhat is operation of "Overlay Mixer" Filter? Pin
Andy Rama18-May-06 20:01
Andy Rama18-May-06 20:01 
QuestionSending a web page to client on socket Pin
shuchigo_jane18-May-06 19:52
shuchigo_jane18-May-06 19:52 
QuestionCreating a Socket , where firewall is installed Pin
zahid_ash18-May-06 19:24
zahid_ash18-May-06 19:24 
AnswerRe: Creating a Socket , where firewall is installed Pin
ThatsAlok18-May-06 20:04
ThatsAlok18-May-06 20:04 
GeneralRe: Creating a Socket , where firewall is installed Pin
zahid_ash18-May-06 20:24
zahid_ash18-May-06 20:24 
GeneralRe: Creating a Socket , where firewall is installed Pin
Eytukan18-May-06 21:37
Eytukan18-May-06 21:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.