代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/158402/11620969

c sh.c

#include "stdio.h" #include "stdlib.h" #define BUFFERSIZE 64 #define MAXARGSIZE 16 #define MAXARGS 16 /** * tokenizeCommand * * Splits the specified command line into tokens, creatin
www.eeworm.com/read/158246/11630013

cpp impr_eul.cpp

//////////////////////////////////////////////////// //注释请参看Euler法程序 Euler.cpp //////////////////////////////////////////////////// // 程序4.2 — 改进的欧拉方法 #include #include
www.eeworm.com/read/158073/11645494

cpp impr_eul.cpp

//////////////////////////////////////////////////// //注释请参看Euler法程序 Euler.cpp //////////////////////////////////////////////////// // 程序4.2 — 改进的欧拉方法 #include #include
www.eeworm.com/read/157453/11704403

h awdgraph.h

// file awdgraph.h // adjacency matrix representation of a directed weighted graph // initial version #ifndef AdjacencyWDigraph_ #define AdjacencyWDigraph_ #include #include
www.eeworm.com/read/346994/11706204

c ftell.c

/* Demonstrates ftell() and rewind(). */ #include #include #define BUFLEN 6 char msg[] = "abcdefghijklmnopqrstuvwxyz"; int main( void ) { FILE *fp; char buf[
www.eeworm.com/read/346994/11706305

c calloc.c

/* Demonstrates calloc(). */ #include #include int main( void ) { unsigned long num; int *ptr; printf("Enter the number of type int to allocate: ");
www.eeworm.com/read/346994/11706639

c ptrsort.c

/* Inputs a list of strings from the keyboard, sorts them */ /* in ascending or descending order, and then displays them */ /* on the screen. */ #include #include #include
www.eeworm.com/read/346994/11706959

c find_nbr.c

/* Name: find_nbr.c * Purpose: This program picks a random number and then * lets the user try to guess it * Returns: Nothing */ #include #include #in
www.eeworm.com/read/260147/11743328

c cerrexit.c

/* cerrexit.c - cerrexit */ #include #include #include #include #include "local.h" /*--------------------------------------------------------------------
www.eeworm.com/read/346384/11751634

c mallocs.c

/* * mymalloc, myrealloc, dupstr - memory allocation with error handling * * Environment: POSIX, ANSI * * Author: Wietse Venema. */ #include #include #include