代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/226560/14458828
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// How variables are scoped
int main
www.eeworm.com/read/123847/14610010
c scope.c
/* scope.c */
#include
int i = 3; /* A "global" variable */
main() {
int j;
printf("%d\n",i);
for (j = 0; j < i; ++j) {
int i = 99;
printf("%d\n",
www.eeworm.com/read/223570/14624360
fp scope.fp
www.eeworm.com/read/223570/14624388
c scope.c
#include
#include
/* == Sample Oscilloscope Instrument Module =============================== */
#include "scope.h"
int scope_device_closed (void);
int scope_invalid_integer
www.eeworm.com/read/223570/14624392
h scope.h
#include "cvidef.h"
/* = Sample Oscilloscope Include File ===================================== */
int CVIFUNC scope_init (int);
int CVIFUNC scope_close (void);
int CVIFUNC scope_config (int, doubl
www.eeworm.com/read/223570/14624504
prj scope.prj
[Project Header]
Version = 501
Platform Code = 4
Pathname = "/d/Program Files/cvi/instr/scope.prj"
CVI Dir = "/d/program files/cvi"
VXIplug&play Framework Dir = "/d/program files/VXIPNP/win95"
N
www.eeworm.com/read/122684/14674849
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// How variables are scoped
in
www.eeworm.com/read/221831/14718695
stx scope.stx
#TITLE=Fortran
; EditPlus Syntax File written by Fahri Ersel OLCER
; Email: olcerf@itu.edu.tr
; This file is provided as a syntax file for Scope
; This file has no relation to ART, use on your own
www.eeworm.com/read/221571/14737194
c scope.c
/* scope.c */
#include
int i = 3; /* A "global" variable */
main()
{
int j;
printf("%d\n",i);
for (j = 0; j < i; ++j)
{
int i = 99;
printf("