please dont rip this site

Language Ccpp Cppref Examples New.cc

 
/**************************************************************************
 *
 * 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: 2024/4/23 03:27,
TOP NEW HELP FIND: 
18.224.0.25:LOG IN

 ©2024 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.massmind.org/techref/language/ccpp/cppref/EXAMPLES/new.cc"> language ccpp cppref EXAMPLES new</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .