Dan' s C++ NuBee Site...

more to come soon.....

     
 
This property was reserved by

karatiboy
on
10th May 1999

Let's Learn to program using C++ together!

 
This site will focus on some of the programming issues that I found the most difficult while leanring C++ programming. I will also be posting some code snips that I have found useful in developing my skills as a C++ programmer.


Here's a small function that will check an array for a value and let you know if the value is in the array:  You can use this for int arrays as well.

void Search(char A[])

{

 char S_val;

 cout << "Enter the search char: ";

 cin >> S_val;

 for(int i = 0; i < Max; ++i)

{

if(S_val == A[i])

cout << "Value found" << endl;

else

cout << "Value not found." << endl;

break;

}

}

www.fortunecity.com

 
Download CodeBase:

CodeBase is an easy way to store your reusable code snips. Simply 'Copy' the code snip from your program and 'Paste' it into the data base for future use.

CodeBase is fully functional with no time limits.

If you'd like to try the CodeBase data base program, click on one of the sites listed below:

In CNET search, type: CodeBase then follow the instructions to download.

Click on the link below for 'CodeBase'

 
Favourite links
 


Email me at:
[email protected]
This page has been visited times.