首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴cstdio的代码贴C语言
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int get()
{
      int i=getchar();
      return i;
}//get
void bye()
{
      printf("bye");
      exit(0);
......................
阅读全部 | 2019年1月27日 18:06
/**
 * This file has no copyright assigned and is placed in the Public Domain.
 * This file is part of the mingw-w64 runtime package.
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 */
#ifndef _INC_STRING
#define _INC_STRING

#include <crtdefs.h>

#ifdef __cplusplus
extern "C" {
......................
阅读全部 | 2018年12月16日 15:43
/*
 * locking.h
 * This file has no copyright assigned and is placed in the Public Domain.
 * This file is a part of the mingw-runtime package.
 * No warranty is given; refer to the file DISCLAIMER within the package.
 *
 * Constants for the mode parameter of the locking function.
 *
 */

#ifndef    _LOCKING_H_
#define    _LOCKING_H_
......................
阅读全部 | 2018年6月10日 18:37
1
cstdio