代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/153007/5654970
h config.h
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/153007/5654980
h config.h
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/153007/5654990
h config.h
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/475955/6771179
c longjmp.c
#include
#include
#include
jmp_buf location; // Global variable
void function(void)
{
printf("About to longjmp\n");
longjmp(location, 1); // Return
www.eeworm.com/read/475959/6771293
cpp 11_17.cpp
#include
using namespace std;
int main()
{ int iValue = 8000; double dValue = 0.0847639;
cout
www.eeworm.com/read/475959/6771376
cpp 5_3.cpp
#include
using namespace std;
int main()
{ int i = 10, j = 30;
if(j > 0)
{ int i; // 内部的i 将隐藏或屏蔽外层的i
i = j / 2; cout
www.eeworm.com/read/475585/6773896
h debug.h
/* -*-C-*-
********************************************************************************
*
* File: debug.h (Formerly debug.h)
* Description: Combinatorial Splitter
* Author: Mar
www.eeworm.com/read/475765/6777753
m bes2f.m
function xdot=bes2f(t,x,flag,a,b)
% CALL: xdot=bes2f(t,x,flag,a,b); Called by ode23. This function defines the second
% order differential equation y''+b*exp(at)y = 0. flag is a dummy variable.
www.eeworm.com/read/197430/6784274
makefile
使用函数
————
在Makefile中可以使用函数来处理变量,从而让我们的命令或是规则更为的灵活和具有智能。make所支持的函数也不算很多,不过已经足够我们的操作了。函数调用后,函数的返回值可以当做变量来使用。
一、函数的调用语法
函数调用,很像变量的使用,也是以“$”来标识的,其语法如下:
$( )
或是
...
www.eeworm.com/read/197430/6784289
makefile
使用函数
————
在Makefile中可以使用函数来处理变量,从而让我们的命令或是规则更为的灵活和具有智能。make所支持的函数也不算很多,不过已经足够我们的操作了。函数调用后,函数的返回值可以当做变量来使用。
一、函数的调用语法
函数调用,很像变量的使用,也是以“$”来标识的,其语法如下:
$( )
或是
...