代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/382268/2638579
cpp ch21_1.cpp
//**********************
//** ch21_1.cpp **
//**********************
#include
#include
#include
void main(int argc, char ** argv)
{
ifstream sourc
www.eeworm.com/read/377738/2697074
cpp pex12_5.cpp
#include
#include
#include
#pragma hdrstop
#include "list.h"
enum ErrorType
{invalidArraySize, memoryAllocationError, indexOutOfRange};
char *errorMs
www.eeworm.com/read/377738/2697085
cpp pex5_4.cpp
#include
#include
typedef char DataType; // stack elements are characters
const int MaxStackSize = 50;
class Stack
{
private:
// private data members.
www.eeworm.com/read/377738/2697193
cpp pex13_4.cpp
#include
#include
#pragma hdrstop
#include "random.h"
template
class Heap
{
private:
// hlist points at the array which c
www.eeworm.com/read/377738/2697194
cpp pex13_7.cpp
#include
#include
#pragma hdrstop
// used to implement a stack with a priority queue
template
struct PriorityData
{
T data;
int priority;
};
// compar
www.eeworm.com/read/375736/2721605
c mapstr.c
// mapstr.c -- match abbreviated strings from list
//
#include
#include "mapstr.h"
// Find the "best" argument mapping
MapItemPtr
mapAbbrStr (
MapAbbr szArg,
MapItemPt
www.eeworm.com/read/372970/2767853
cpp generateexam.cpp
// GenerateExam.cpp : Implementation of CGenerateExam
#include "stdafx.h"
#include "EXAM.h"
#include "GenerateExam.h"
#include "time.h"
#include "stdlib.h"
//////////////////////////////////
www.eeworm.com/read/366702/2869755
c inherit2.c
// { dg-do assemble }
#include
class A {
public:
void z();
A(void) {}
private:
A(const A &) { abort(); } // { dg-error "private" }
const A& operator =(const A &) { abort(); }
};
www.eeworm.com/read/366702/2878467
c const-addr-expr-1.c
#include
#include
extern void abort();
typedef struct foo
{
int uaattrid;
char *name;
} FOO;
FOO Upgrade_items[] =
{
{1, "1"},
www.eeworm.com/read/361261/2947683
cpp atmocalculations.cpp
/*
* calculations.c: calculations needed by the input devices
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#include
#include