Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
~210 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for aaronzf

Write a function with the prototype void findMisspellings(const char *text, const char *correctlySpelled, char *result) which populates the string result containing all the words in text that are misspelled, in the order they appear in text, with a single space separating each word and no leading or trailing whitespace. A …

Member Avatar for daviddoria
-2
126
Member Avatar for aaronzf

Write a function with the prototype unsigned long findFibonacciPrimes(unsigned long lowerBound, unsigned long upperBound, unsigned long result[]) which populates the array result with all of the prime numbers that are also Fibonacci numbers between lowerBound (inclusive) and upperBound (inclusive), and then returns the number of Fibonacci primes that were found. …

Member Avatar for daviddoria
0
84