Click here to Skip to main content
15,891,907 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionScreen live streaming Pin
ashishbhatt19-Oct-07 22:09
ashishbhatt19-Oct-07 22:09 
AnswerRe: Screen live streaming Pin
zakkas248320-Oct-07 0:01
zakkas248320-Oct-07 0:01 
GeneralRe: Screen live streaming Pin
ashishbhatt20-Oct-07 0:14
ashishbhatt20-Oct-07 0:14 
Questionabout array creation Pin
DSPCottage19-Oct-07 21:36
DSPCottage19-Oct-07 21:36 
AnswerRe: about array creation Pin
DSPCottage19-Oct-07 22:35
DSPCottage19-Oct-07 22:35 
AnswerRe: about array creation Pin
kcynic21-Oct-07 16:25
kcynic21-Oct-07 16:25 
Questionurgent :: how to break a character string into single characters? Pin
AnayKulkarni19-Oct-07 21:09
AnayKulkarni19-Oct-07 21:09 
AnswerRe: urgent :: how to break a character string into single characters? Pin
Tydia-kun20-Oct-07 3:33
Tydia-kun20-Oct-07 3:33 
The pointer is basically a pointer to an array of chars.
You can simply loop through them one by one and print 7 chars, then print a new line.

char* a = some_string;<br />
int length = strlen(a);<br />
while(length > 0)<br />
{<br />
for (int i = 0; i < 7; i++)<br />
{<br />
length--;<br />
cout << *a++;<br />
}<br />
cout << endl;<br />
}

Questioncreating a virus to use on my own computer Pin
Zinzara19-Oct-07 20:41
Zinzara19-Oct-07 20:41 
QuestionRe: creating a virus to use on my own computer Pin
Hamid_RT19-Oct-07 21:19
Hamid_RT19-Oct-07 21:19 
AnswerRe: creating a virus to use on my own computer Pin
Zinzara19-Oct-07 21:33
Zinzara19-Oct-07 21:33 
GeneralRe: creating a virus to use on my own computer Pin
Hamid_RT20-Oct-07 5:56
Hamid_RT20-Oct-07 5:56 
QuestionHow to go about sending/receiving webpage requests Pin
Reveille19-Oct-07 17:13
Reveille19-Oct-07 17:13 
AnswerRe: How to go about sending/receiving webpage requests Pin
Hamid_RT19-Oct-07 19:12
Hamid_RT19-Oct-07 19:12 
QuestionHow can I move child frame out of main frame window Pin
s196675m19-Oct-07 13:17
s196675m19-Oct-07 13:17 
AnswerRe: How can I move child frame out of main frame window Pin
Hamid_RT19-Oct-07 19:31
Hamid_RT19-Oct-07 19:31 
Question[SOLVED}How can i add status/toolbar in Child frame of MDI application [modified] Pin
s196675m19-Oct-07 13:06
s196675m19-Oct-07 13:06 
QuestionContents in String Table Pin
MuthiahR19-Oct-07 12:43
MuthiahR19-Oct-07 12:43 
AnswerRe: Contents in String Table Pin
Hamid_RT19-Oct-07 19:44
Hamid_RT19-Oct-07 19:44 
QuestionReceiving an ASSERT failure in wincore.cpp Pin
Reagan Conservative19-Oct-07 11:32
Reagan Conservative19-Oct-07 11:32 
QuestionRe: Receiving an ASSERT failure in wincore.cpp Pin
Hamid_RT19-Oct-07 19:35
Hamid_RT19-Oct-07 19:35 
QuestionSelecting CListCtrl Column Pin
zohar9419-Oct-07 9:50
zohar9419-Oct-07 9:50 
AnswerRe: Selecting CListCtrl Column Pin
Hamid_RT19-Oct-07 19:54
Hamid_RT19-Oct-07 19:54 
QuestionStore an image file on printer memory Pin
ShilpaPotnis19-Oct-07 9:39
ShilpaPotnis19-Oct-07 9:39 
Questionunhandled exception Pin
staticplus19-Oct-07 7:54
staticplus19-Oct-07 7:54 

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.