代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/295994/8129375
c task2.c
#include
#include
#include
int ticks=0;
int main(int argc, char *argv[])
{
printf("main=0x%p\n", main);
printf("&ticks=0x%p, ticks=%d\n", &ticks, ticks)
www.eeworm.com/read/396062/8134988
c system_sample.c
#include
#include
int main(int argc,char *argv[])
{
system("ls -l");
printf("hello!\n");
return 0;
}
www.eeworm.com/read/333590/12670959
cpp main.cpp
#include
#include
#include
#include "dialog.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Dialog dialog;
dialog.show(
www.eeworm.com/read/333587/12670991
cpp main.cpp
#include
#include
#include
#include "dialog.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Dialog dialog;
dialog.show(
www.eeworm.com/read/247203/12673748
h operater.h
#include // cin 及 cout
#include // strcpy(): 字符串复制
#include // system("cls")
#include // 文件操作(写文件)
#include "list.h" // 我们要创建类 List
www.eeworm.com/read/333542/12676544
txt 9-21.txt
/* 范例:9-21 */
#include
#include
void main(int argc,char *argv[])
{
FILE *fp1;
int i,a=10,b=10;
if ((fp1=fopen(argv[1],"r"))==NULL) /* 读取模式 */
{
printf("文件%s
www.eeworm.com/read/333344/12686310
c hello.c
/*hello.c*/
#include
#include
#include "hello.h"
int main()
{
val32_t i = 5;
printf("hello, embedded world %d\n",i);
}
www.eeworm.com/read/247008/12692661
c onesnumber.c
#include
#include
int OnesCount(int n) {
int q, r0, r, p=1, sum1=0;
q=n;
do {
r=q%10; q/=10; r0=n%p;
sum1+= q*p;
if (r>1) sum1+=p;
else if (r==1)
www.eeworm.com/read/246938/12697357
c test.c
#include
#include
#include
#include "smtp.h"
int main (int argc,char *argv[])
{
char *pdata ;
char *data="い瓣
www.eeworm.com/read/145840/12700142
cc fifo.cc
#include
#include "Fifo.h"
Fifo::Fifo( int n ) { f = (Trans **) malloc( n*sizeof( Trans * ) ); size = n; curpos = 0; };
Trans * Fifo::tail() { return( f[curpos] ); };
void Fifo::push(