please dont rip this site

language ccpp cppref EXAMPLES new

 
/**************************************************************************
 *
 * Language: C++
 * Purpose:  Program to demonstrate the 'new' statement.
 * Author:   M J Leslie
 * Date:     14-Feb-96
 *
 **************************************************************************/

#include <iostream.h>                  // For cout.

typedef struct
  {
    char Model[256];
    int  Wheels;
    int  Doors;
    int  EngineSize;
  } Car_t;

main()
{
  Car_t *Models;                       // Create a pointer.

  Models = new Car_t;                  // Allocate stoarage.

                                       // Load with data.
  strcpy(Models->Model, "Escort");
  Models->Wheels = 4;
  Models->Doors  = 3;
  Models->EngineSize = 1499;

                                       // Display data.

   cout << Models->Model << " has " << Models->Doors << "doors" << endl;

   delete Models;                      // Free the storage. 
}



file: /Techref/language/ccpp/cppref/EXAMPLES/new.cc, 0KB, , updated: 1996/3/14 10:36, local time: 2012/5/25 04:45,
TOP NEW HELP FIND: 
38.107.179.234:LOG IN

 ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE! / 

<A HREF="http://www.piclist.com/techref/language/ccpp/cppref/EXAMPLES/new.cc"> language ccpp cppref EXAMPLES new</A>

Did you find what you needed?

 
DON'T THROW IT AWAY! We part out dead printers, faxes, and other small mechanical items for hobby use and to support our web sites. And we pay shipping in California or pick up in San Diego North County. Call 1-619-652-0593 or email jamesnewton@massmind.org
 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .