代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/253260/12235535

cpp count.cpp

// count.cpp -- counting characters in a list of files #include #include #include // or stdlib.h // #include // for Macintosh int main(int
www.eeworm.com/read/253260/12235591

cpp append.cpp

// append.cpp -- appending information to a file #include #include #include #include // (or stdlib.h) for exit() const char * file = "guests.txt";
www.eeworm.com/read/251541/12338659

c import3.c

/* This is an important file for managing the project. It implements the canoncial "Hello World" program. Filename: $RCSfile$ */ #include #include static char *RCSinfo
www.eeworm.com/read/337096/12391862

cpp count.cpp

// count.cpp -- counting characters in a list of files #include #include #include // or stdlib.h // #include // for Macintosh int main(int
www.eeworm.com/read/337096/12391916

cpp append.cpp

// append.cpp -- appending information to a file #include #include #include #include // (or stdlib.h) for exit() const char * file = "guests.txt";
www.eeworm.com/read/250662/12393116

c char_cat.c

/* ** Compute the percentage of characters read from the standard ** input that are in each of several character categories. */ #include #include #include /* *
www.eeworm.com/read/250662/12393137

c strlen.c

/* ** Compute the length of a string. */ #include size_t strlen( char *string ) { int length = 0; /* ** Advance through the string, counting characters ** until the term
www.eeworm.com/read/250662/12393188

c invdelet.c

/* ** Function to discard an inventory record. */ #include #include "inventor.h" void discard_inventory_record( Invrec *record ) { /* ** Delete the variant parts of the recor
www.eeworm.com/read/250662/12393203

h queue.h

/* ** Interface for a queue module */ #include #define QUEUE_TYPE int /* Type of value in the queue */ /* ** create_queue ** Creates a queue. The argument indicates the maximu
www.eeworm.com/read/148696/12440083

cpp cus_arr.cpp

#include #include class loc { int longitude, latitude; public: loc(void) {} // Used to construct temporaries loc (int lg, int lt) {