Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for VBOI

Instead of entering text to console, I want to use the text from a text file and use this function and method to do a concordance count of words and how many times they appear in the text file. check line 137 #include "stdafx.h" #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> #include<ctype.h> #include …

Member Avatar for iamthwee
0
176
Member Avatar for VBOI

Here is a function to print my binary search node tree, void printtree(struct node *tree) { if (tree!=NULL) { printtree(tree->left); printf("%s %d\n",tree->word, tree->lineNumber); printtree(tree->right); } } How would I save what I print to a text file???????

Member Avatar for Nutster
0
3K
Member Avatar for VBOI

**Why is it that when i use ctime to capture the time I am getting this error: time_t now = time(0);// convert now to string form char* dt = ctime(&now); cout << "The local date and time is: " << dt << endl; error C4996: 'ctime': This function or variable …

Member Avatar for deceptikon
0
2K
Member Avatar for VBOI

Help in a loop to reloop and convert the prices and prices2 of those houses in the array to a double??????? [code]for (int i=0;getline(file,(house[i]),',');i++) { getline(file, cars[i], ','); getline(file, price[i], ',') ; getline(file, price2[i]); if(input == house[i]) { for(int i=0; ) ?????<<<<<<<<<<<<<<--Help here. } [/code]

Member Avatar for Moschops
0
113