代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/208576/15243668
cpp fig22_37.cpp
// Fig. 22.37: fig22_37.cpp
// Using memmove.
#include
using std::cout;
using std::endl;
#include // memmove prototype
using std::memmove;
int main()
{
char x[] =
www.eeworm.com/read/208576/15243671
cpp fig22_04.cpp
// Fig. 22.4: fig22_04.cpp
// Card shuffling and dealing program.
#include "DeckOfCards.h" // DeckOfCards class definition
int main()
{
DeckOfCards deckOfCards; // create DeckOfCards object
www.eeworm.com/read/208576/15243674
cpp fig22_24.cpp
// Fig. 22.24: fig22_24.cpp
// Using atol.
#include
using std::cout;
using std::endl;
#include // atol prototype
using std::atol;
int main()
{
long x = atol( "1000
www.eeworm.com/read/208576/15243679
cpp fig16_05.cpp
// Fig. 16.5: Fig16_05.cpp
// Demonstrating pre-standard new returning 0 when memory
// is not allocated.
#include
using std::cerr;
using std::cout;
int main()
{
double *ptr[
www.eeworm.com/read/208576/15243788
cpp fig10_06.cpp
// Fig. 10.6: fig10_06.cpp
// Program to test class Increment.
#include
using std::cout;
#include "Increment.h" // include definition of class Increment
int main()
{
Increment
www.eeworm.com/read/208576/15243796
cpp fig10_09.cpp
// Fig. 10.9: fig10_09.cpp
// Program to test class Increment.
#include
using std::cout;
#include "Increment.h" // include definition of class Increment
int main()
{
Increment
www.eeworm.com/read/208576/15243814
h date.h
// Fig. 9.17: Date.h
// Declaration of class Date.
// Member functions are defined in Date.cpp
// prevent multiple inclusions of header file
#ifndef DATE_H
#define DATE_H
// class Date defin
www.eeworm.com/read/208576/15243815
h time.h
// Fig. 9.14: Time.h
// Declaration of class Time.
// Member functions defined in Time.cpp
// prevent multiple inclusions of header file
#ifndef TIME_H
#define TIME_H
class Time
{
publ
www.eeworm.com/read/208576/15243818
h createanddestroy.h
// Fig. 9.11: CreateAndDestroy.h
// Definition of class CreateAndDestroy.
// Member functions defined in CreateAndDestroy.cpp.
#include
using std::string;
#ifndef CREATE_H
#define CRE