代码搜索:Use
找到约 10,000 项符合「Use」的源代码
代码结果 10,000
www.eeworm.com/read/292231/8366361
txt how to use.txt
1. open "C- Compiler.exe" (or "C- Compiler - debug version.exe" for
debug version);
2. choose your C-files;
3. COMPILE->TRACE: generate trace files;
COMPILE->BUILD->
www.eeworm.com/read/391291/8411533
txt 51use.txt
--- 设计与应用
--------------------------------------------------------------------------------
MCS-51单片机实用子程序库
日期 2000-6-5
作者 电子设计工作室 member.shangdu.net/home1/azhu
内容
目前已有若干版本的子程序库公开发表,它们各有特色。
www.eeworm.com/read/291040/8443984
txt how to use.txt
1. open "C- Compiler.exe" (or "C- Compiler - debug version.exe" for
debug version);
2. choose your C-files;
3. COMPILE->TRACE: generate trace files;
COMPILE->BUILD->
www.eeworm.com/read/390708/8451463
gif use_menu.gif
www.eeworm.com/read/290380/8486107
c use_func.c
#include
void hello_world(void)
{
printf("Hello, world!\n");
}
void main(void)
{
hello_world();
}
www.eeworm.com/read/290380/8486144
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/290380/8486172
c use_max.c
#include
int get_maximum(int, int);
void main(void)
{
int result;
result = get_maximum(100, 200);
printf("The larger value is %d\n", result);
}
www.eeworm.com/read/388784/8575810
cpp use_chckptr.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/388784/8576045
cpp use-handle.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that