Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ah01
  • Order by date
  1. ah01

    arrays of structures

    #include <iostream> using namespace std; struct person { char name[15]; int *scores; }; //// function prototype ////////// void allocate_arrays(int number_players,int number_scores); ////////////////////////////////// int main() { int number_scores; int number_players; cout...
  2. ah01

    Printing an output of a program

    can I send my output of a consol program to the printer from within vc++ 6.0 or from vC++.net? how? thanks
  3. ah01

    strings coparison

    thaks, that fixed the problem.
  4. ah01

    strings coparison

    #include <iostream.h> #include <string.h> int main() { char name1[15]; char name2[15]; bool game = false; int answer = 1; while (!game) { cout << "enter name1 : " ; cin.getline(name1 , 5); cin.ignore(80,'\n'); cout << "enter name2 : "...

Part and Inventory Search

Back
Top