![]() |
| | #1 |
| Registered User Join Date: May 2008
Posts: 10
| strcmp help... Code: /****
Made by James, free for distribution.
****/
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char sentence[4000]= "This is a test. It should've made a new line there but it didn't. plz help!";
int x;
for(x=0; x<=3999; x++)
{
if(strcmp(sentence[x],".") cout<<"\n";
cout<<sentence[x];
}
cin.get();
return(0);
}
~Wiiplayer12 |
| Wiiplayer12 is offline | |
| | #2 |
| Just Lurking Join Date: Oct 2002
Posts: 4,990
| This is probably closer to what you are after: Code: if ( sentence[x] == '.') cout<<"\n";
__________________ 7. It is easier to write an incorrect program than understand a correct one. 40. There are two ways to write error-free programs; only the third one works.* |
| Dave_Sinkula is offline | |
| | #3 |
| Jack of many languages Join Date: Nov 2007 Location: Katy, Texas
Posts: 1,929
| Yes. You are using strcmp() and the first argument you are passing is not a string.
__________________ Mac and Windows cross platform programmer. Ruby lover. Memorable Quotes From Recent Posts: I can't remember. |
| Dino is offline | |
| | #4 |
| Registered User Join Date: May 2008
Posts: 10
| O, thank you so much dave! if anyone wants the working code, here it is: Code: /****
Made by James, free for distribution.
****/
#include "stdafx.h"
#include <iostream>
#include "windows.h"
#include <cstring>
using namespace std;
int main()
{
char sentence[4000]= "This is a test.hello.hi.It workS!!!1!.~Wiiplayer12";
int x;
for(x=0; x<=3999; x++)
{
cout<<sentence[x];
Sleep(50);
if(sentence[x]=='.'){
cout<<"\n";
}
}
cin.get();
return(0);
}
|
| Wiiplayer12 is offline | |
| | #5 | |
| CSharpener Join Date: Oct 2006
Posts: 5,242
| Quote:
__________________ If I have eight hours for cutting wood, I spend six sharpening my axe. | |
| vart is offline | |
![]() |
| Tags |
| strcmp, typing |
| Thread Tools | |
| Display Modes | |
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Fucntion returns -1, Why? | Taper | C Programming | 16 | 12-08-2008 06:30 PM |
| help with switch statement | agentsmith | C Programming | 11 | 08-26-2008 04:02 PM |
| problem with strings | agentsmith | C Programming | 5 | 04-08-2008 12:07 PM |
| help with strcmp | blork_98 | C Programming | 8 | 02-21-2006 08:23 PM |
| strcmp | kryonik | C Programming | 9 | 10-11-2005 11:04 AM |