View Single Post
  #5  
Old 11-13-2007, 12:39 PM
fiskebent fiskebent is offline
Senior Member
 
Join Date: Nov 2005
Location: To your right
Posts: 1,124
Default Re: PLEASE Help Me With Simple C++ Code!

I like C...

<font class="small">Code:</font><hr /><pre>#include &lt;string.h&gt;
#include &lt;stdio.h&gt;

void main(int argc, char *argv[])
{
FILE *f;
int found = 0;
char *position;
char line[300];
f = fopen(argv[1], "r");
while (fgets(line, sizeof(line), f)) {
position = line;
while (position = strstr(position++, "hate me")) {
found++;
}
}
fclose(f);
printf ("\"hate me\" found %d times.\n", found);
}</pre><hr />
Reply With Quote