代码搜索:REF
找到约 10,000 项符合「REF」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6243224
2d l15.2d
#print
As we mentioned, you can add several lines at once. Here is
a set of lines; go into the editor, append them, write them
on a file named "fruit", and then leave the editor and
type "ready".
#cr
www.eeworm.com/read/101082/6243262
2b l35.2b
#print
Now suppose we wanted to delete the blanks
after the letter "t" in this line:
here are a lot of blanks
This line is on file "blank". Try the sequence
ex blank
1p
s/t */t/p
wq
ready
www.eeworm.com/read/101082/6243312
1a l10.1a
#print
Often, what you want to do is print an entire file,
and often you don't know exactly how long it is.
There is a special abbreviation for this purpose:
the character
$
refers to the last line
www.eeworm.com/read/101082/6243372
3d l15.3d
#print
Use the editor to make a file named 'pres' and containing
the single line
franklin delano roosevelt
and then type "ready".
#create Ref
franklin delano roosevelt
#user
#cmp pres Ref
#log
#next
www.eeworm.com/read/101082/6243398
1a l1.1a
#print
(Section 1.1)
The way you compile a C program is to say
cc name.c
where name.c is the name of the file the program
is on. Here is a short C program that prints
out a line containing "hello"
www.eeworm.com/read/101082/6243407
1b l1.1b
#print
(Section 1.1)
Now write a C program that prints two lines,
the first of which says "hello" and the second
"goodbye". Don't forget those \n delimiters.
Compile and test it. When satisfied,
typ
www.eeworm.com/read/101082/6243433
1a l19.1a
#print
Write a subroutine which counts the number of times it has
been called and returns that count each time. Name it
"count()". Write it on a file named "count.c". Compile
and test it; type "rea
www.eeworm.com/read/207069/6297543
asm vectors.asm
*********************************
* Reset vectors *
*********************************
.title "vectors.asm"
.ref start
.sect ".vectors"
B start
.end
www.eeworm.com/read/207069/6297622
asm vectors.asm
*********************************
* Reset vectors *
*********************************
.title "vectors.asm"
.ref start
.sect ".vectors"
B start
.end
www.eeworm.com/read/207069/6297710
asm vectors.asm
*********************************
* Reset vectors *
*********************************
.title "vectors.asm"
.ref start
.sect ".vectors"
B start
.end