代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/161772/10375910
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/161772/10376029
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/161772/10376476
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/161772/10377017
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/354174/10380627
cpp joseph.cpp
#include
#include
typedef struct node /* 结点的结构定义 */
{ int num; /* 编号 */
int sm; /* 密码 */
struct node *link;
www.eeworm.com/read/161587/10394991
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/353980/10400635
cc raw2pgm.cc
/*---------------------------------------------------------------------------*/
#include
#include
#include
#include
#include
#include "global.hh"
www.eeworm.com/read/353980/10400682
cc compare.cc
/*---------------------------------------------------------------------------*/
#include
#include
#include
#include
#include
#include "global.hh"
www.eeworm.com/read/353980/10400765
cc pgm2raw.cc
/*---------------------------------------------------------------------------*/
#include
#include
#include
#include
#include
#include "global.hh"
www.eeworm.com/read/353894/10407538
+
# include "stdio.h"
# include "stdlib.h"
struct node{
int values;
struct node *next;
};
struct node *create(int [],int);
void sort (struct node **)