代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/476355/6758176
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/476392/6759441
m chp6ex6.m
Dx=[10; 10; 10]; % Change in variable is set to a high value
x=[1; 1; 1]; % Initial estimate
C=[11; 3; 6];
iter = 0;
www.eeworm.com/read/476260/6764599
log cc_build_debug.log
----------------------------- jmccs2.pjt - Debug -----------------------------
"c:\ti\c6000\cgtools\bin\cl6x" -g -q -fr"E:/project/study/jmccs2/jmccs2/Debug" -d"_DEBUG" -ml3 -mv6400 -@"../Debug.lkf
www.eeworm.com/read/265294/11270808
h config.h
/********************************************************************************************************/
#ifndef __CONFIG_H
#define __CONFIG_H
//This segment should not be modified
#ifndef TR
www.eeworm.com/read/410700/11271394
plg forusb.plg
Build Log
--------------------Configuration: ForUsb - Win32 Checked--------------------
Command Lines
warning: unresolved Environment Variable
www.eeworm.com/read/410626/11274395
bak setfq .vhd.bak
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY setfq IS
PORT(d,clk:in std_logic;
q:out std_logic);
END ENTITY setfq;
ARCHITECTURE behave OF s
www.eeworm.com/read/410432/11287291
c input.c
// input.c -- when to use &
#include
int main(void)
{
int age; // variable
float assets; // variable
char pet[30]; // string
printf("
www.eeworm.com/read/410432/11287401
c global.c
/* global.c -- uses an external variable */
#include
int units = 0; /* an external variable */
void critic(void);
int main(void)
{
extern int units; /* an optional r
www.eeworm.com/read/410432/11287490
c zippo2.c
/* zippo2.c -- zippo info via a pointer variable */
#include
int main(void)
{
int zippo[4][2] = { {2,4}, {6,8}, {1,3}, {5, 7} };
int (*pz)[2];
pz = zippo;
print
www.eeworm.com/read/410432/11287757
c first.c
#include
int main(void) /* a simple program */
{
int num; /* define a variable called num */
num = 1; /* assign a val