代码搜索:主电路设计
找到约 10,000 项符合「主电路设计」的源代码
代码结果 10,000
www.eeworm.com/read/17110/717508
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str[40]="this is str1";
int i;
//初始化串口
i=strrpos(str,'s'); //调用函数
www.eeworm.com/read/17110/717591
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str[40]="this is str1";
int i;
//初始化串口
i=strpos(str,'s'); //调用函数
www.eeworm.com/read/17110/717647
c ex1.c
#include //头文件
int square(int x); //函数声明
void main( ) //主函数
{
int t=10;
printf("square(%d)=%d\n",t,square(t)); //函数赋值调用,并输出
printf("t=%d\n",t); //输出变量
www.eeworm.com/read/17110/717703
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str[50]="this is line 1 ";
int i;
//初始化串口
i=strlen(str); //获取字符个数
www.eeworm.com/read/17110/717841
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str[50]="this is str1";
char * p;
//初始化串口
p=strchr(str,'r'); //搜索字
www.eeworm.com/read/17110/718346
c ex1.c
#include //头文件
#define DPortRam FARRAY(int,0x24000)
void main(void) //主函数
{
int i; //声明变量
long l;
l=FARRAY(long,0x8000)[i]; //使用FARRAY访问
FARRAY(long,0
www.eeworm.com/read/17110/718459
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
int *p; //指针指向整型元素
int *newp;
//初始化串口
p=malloc(15); //申请内存
if(p==NULL
www.eeworm.com/read/17110/718599
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str1[]="This is a test string!"; //初始化
static char str2[15];
char *p;
//初
www.eeworm.com/read/17110/718655
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
static char str[40]="this is str1";
char * p;
//初始化串口
p=strrchr(str,'s'); //调用函
www.eeworm.com/read/17110/718697
c ex1.c
#include //头文件
#include
#include
void main(void) //主函数
{
char ch; //变量声明
char ch_lower;
//初始化串口
ch='A'; //字符变量赋值
ch_lower=