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: 2025年9月13日 08:53,
40.74.122.252:LOG IN

©2025 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://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 massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /