代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/241475/13141664
h sqlite3.h
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/138595/13229555
txt flow control and exception handling.txt
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:00:19 AM
2) Flow control and exception Handling
Objective 1)
Write code using if and switch statements and identify legal argument types for these stat
www.eeworm.com/read/315921/13534867
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/301701/13851996
txt flow control and exception handling.txt
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:00:19 AM
2) Flow control and exception Handling
Objective 1)
Write code using if and switch statements and identify legal argument types for these stat
www.eeworm.com/read/140779/5781276
c localtest.c
/* localtest.f -- translated by f2c (version 19951025).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
#include "f2c.h"
/* Table of constant values */
www.eeworm.com/read/131315/5937670
expression
Expression sequences
This is a sequence of statements, of which expression statements
are the commonest case. Statements are separated with semicolons,
and the newline character generally ends th
www.eeworm.com/read/131315/5940466
1 awk.1
.TH AWK 1
.CT 1 files prog_other
.SH NAME
awk \- pattern-directed scanning and processing language
.SH SYNOPSIS
.B awk
[
.BI -F
.I fs
]
[
.BI -v
.I var=value
]
[
.I 'prog'
|
.BI -f
.I progfile
]
[
.I
www.eeworm.com/read/113030/6142221
cpp bases.cpp
// Chapter 12 of C++ How to Program
// bases.cpp
#include
using std::cout;
using std::cin;
using std::endl;
/* Include all necessary using statements from iostream */
#include
www.eeworm.com/read/101042/6259073
el c-indentation.el
; This Emacs Lisp file defines a C indentation style that closely
; follows most aspects of the one that is used throughout SSLeay,
; and hence in OpenSSL.
;
; This definition is for the "CC mode" pa