代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/151305/12220830
vhd 15_mvl7_functions.vhd
--***************************************************************************
-- VHDL BIT_VECTOR Operations for MVL7 type
--
www.eeworm.com/read/253411/12225011
3 fig8.3
#include "apue.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
printf("before vfork\n"); /*
www.eeworm.com/read/253408/12225509
c vfork1.c
#include "apue.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
printf("before vfork\n"); /*
www.eeworm.com/read/339483/12230546
sh ex26.sh
#!/bin/bash
echo
# Equivalent to:
while [ "$var1" != "end" ] # while test "$var1" != "end"
do
echo "Input variable #1 (end to exit) "
read var1
www.eeworm.com/read/339483/12230690
sh unset.sh
#!/bin/bash
# unset.sh: Unsetting a variable.
variable=hello # Initialized.
echo "variable = $variable"
unset variable # Unset.
www.eeworm.com/read/339483/12231731
sh avoid-subshell.sh
#!/bin/bash
# avoid-subshell.sh
# Suggested by Matthew Walker.
Lines=0
echo
cat myfile.txt | while read line;
do {
echo $line
(( Lines++ ));
www.eeworm.com/read/339483/12231760
sh int-or-string.sh
#!/bin/bash
# int-or-string.sh: Integer or string?
a=2334 # Integer.
let "a += 1"
echo "a = $a " # a = 2335
echo # Integer, still.
b=${a/23/BB}
www.eeworm.com/read/339483/12231767
sh read-redir.sh
#!/bin/bash
read var1 <data-file
echo "var1 = $var1"
# var1 set to the entire first line of the input file "data-file"
read var2 var3 <data-file
echo "var2 = $var2 var3 = $var3"
# Note non-i
www.eeworm.com/read/253309/12231824
frm form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 2385
ClientLeft = 60
ClientTop = 345
ClientWidth = 3840
LinkTopic