Click here to Skip to main content
15,923,197 members
Home / Discussions / C#
   

C#

 
GeneralRe: Simple Parse a simple HTTP Response Pin
Stefan Troschuetz9-Nov-04 21:49
Stefan Troschuetz9-Nov-04 21:49 
GeneralRe: Simple Parse a simple HTTP Response Pin
berlinbrown10-Nov-04 2:14
berlinbrown10-Nov-04 2:14 
GeneralRe: Simple Parse a simple HTTP Response Pin
Stefan Troschuetz10-Nov-04 2:26
Stefan Troschuetz10-Nov-04 2:26 
QuestionIs there any function in c#.net like "_i64toa? Pin
FlyToYou9-Nov-04 4:47
FlyToYou9-Nov-04 4:47 
AnswerRe: Is there any function in c#.net like "_i64toa? Pin
Stefan Troschuetz9-Nov-04 4:57
Stefan Troschuetz9-Nov-04 4:57 
AnswerRe: Is there any function in c#.net like "_i64toa? Pin
Tom Larsen9-Nov-04 5:02
Tom Larsen9-Nov-04 5:02 
GeneralGive up now Pin
leppie9-Nov-04 4:12
leppie9-Nov-04 4:12 
GeneralRe: student request Pin
DougW489-Nov-04 21:13
DougW489-Nov-04 21:13 
While I agree with leppie to an extent, I still hate to not help somebody coming in here with questions...

I haven't used c in a while, so I might be a little off, but you should get the idea from this (you'll probably need to check the include libraries, not sure where IsAlpha( char ) lives)

you've already declared your input, which you called imput, with a length of 100...so let's just go from there.

char imput[100]="interesting, this class of robotics";
int iLowerBound, iUpperBound;
for ( int x = 0; x < 100; x++ )
{
if (isalpha( imput[x] ))
{
iLowerBound = x;
while (x < 100 and isalpha(imput[x]))
x++;
iUpperBound = x-1;
for ( int y = iUpperBound; y >= iLowerBound; y-- )
printf("%c",imput[y]);
}
printf("%c",imput[x]);
}


I didn't test this, and really have no clue if it works...I just wrote it off the top of my head in about 5 minutes. Assuming it does work, this should be about all you need. Hope it helps...
Generalfile execution Pin
Pyro Joe9-Nov-04 3:58
Pyro Joe9-Nov-04 3:58 
GeneralRe: file execution Pin
Stefan Troschuetz9-Nov-04 4:26
Stefan Troschuetz9-Nov-04 4:26 
GeneralRe: file execution Pin
Pyro Joe11-Nov-04 3:48
Pyro Joe11-Nov-04 3:48 
GeneralRe: file execution Pin
Stefan Troschuetz11-Nov-04 4:35
Stefan Troschuetz11-Nov-04 4:35 
Generalstudent request Pin
Daemon81189-Nov-04 3:58
Daemon81189-Nov-04 3:58 
GeneralExclude color from Video Pin
machocr9-Nov-04 3:42
machocr9-Nov-04 3:42 
GeneralRe: Exclude color from Video Pin
yoaz9-Nov-04 20:08
yoaz9-Nov-04 20:08 
GeneralVisual Studio.NET DataBinding Issue Pin
Amour Rashid9-Nov-04 2:28
Amour Rashid9-Nov-04 2:28 
GeneralGet resource from project Pin
Anonymous9-Nov-04 2:22
Anonymous9-Nov-04 2:22 
GeneralRe: Get resource from project Pin
Franz Pentenrieder9-Nov-04 2:28
Franz Pentenrieder9-Nov-04 2:28 
GeneralRe: Get resource from project Pin
Anonymous9-Nov-04 3:05
Anonymous9-Nov-04 3:05 
GeneralRe: Get resource from project Pin
Franz Pentenrieder9-Nov-04 3:19
Franz Pentenrieder9-Nov-04 3:19 
GeneralRe: Get resource from project Pin
Judah Gabriel Himango9-Nov-04 5:04
sponsorJudah Gabriel Himango9-Nov-04 5:04 
QuestionDataGird: a fixed row below the header of a column? Pin
Franz Pentenrieder9-Nov-04 1:52
Franz Pentenrieder9-Nov-04 1:52 
GeneralDeployment of COM Interop Pin
skrishnasarma9-Nov-04 0:44
skrishnasarma9-Nov-04 0:44 
GeneralRe: Deployment of COM Interop Pin
Nick Parker9-Nov-04 7:41
protectorNick Parker9-Nov-04 7:41 
GeneralUsing .contains on ArrayLists Pin
MrEyes9-Nov-04 0:15
MrEyes9-Nov-04 0:15 

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.