代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6243376
2b l31.2b
#print
This directory contains a file "animal" which has
a mistyped line. Print the file, find the line,
fix the error using the 's' command, and then
rewrite the corrected file and type "ready".
#cr
www.eeworm.com/read/101082/6243378
2c l50.2c
#print
Edit file "junk" and print the first line
that contains either "color" or "Color".
Then leave the editor and type "ready".
#create junk
this file contains
a few random lines
much noise
bright C
www.eeworm.com/read/101082/6243392
2b l5.2b
#print
(Section 1.5)
Write a program which reads a character from its
input and tests whether that character is larger than
100 in numeric value. If so, read two more
characters, and print the value
www.eeworm.com/read/101082/6243422
1c l1.1c
#print
(Section 1.1)
The program in Ref.c has an error in it.
Find it, fix it, and run it.
Then type ready.
#once #create Ref.c
main()
{
printf("hello\");
}
#once #create Ref
hello
#user
a.out >x
#cm
www.eeworm.com/read/101082/6243425
1a l9.1a
#print
(Section 1.9 -- read 1.6-1.8 too.)
Write a program that removes trailing blanks
and tabs from each line of input, and deletes
entirely blank lines. To make your job easier,
you can use the fun
www.eeworm.com/read/101082/6243437
2a l5.2a
#print
Write a program which reads a character from its
input and prints "high" if that character is
larger than 100 in numeric value (decimal) and "low"
if it is less than or equal to 100 in numeric
www.eeworm.com/read/101082/6243439
1a l31.1a
#print
Write a function named "rev(s)" which reverses
the string "s" in place. Name the file that contains
the function "rev.c".
When you're satisfied, type "ready".
#once #create Ref
cbax0987654321
#
www.eeworm.com/read/101082/6243455
1d l6.1d
#print
What does "*b*" match? Clearly, any file
with a "b" anywhere in its name. Similarly,
how many files in this directory have
"se" somewhere in their name?
Type "answer N" when you figure it out
www.eeworm.com/read/101082/6243459
2c l9.2c
#print
And as an example of the [] operators again,
print all the files in this directory whose
names begin with either 'a' or 'c'.
That will tell you to type either 'yes'
or 'no' - do what it says.
#
www.eeworm.com/read/101082/6243474
2b l4.2b
#print
You can inquire about several files at once
with the "ls" command. If you type, for example,
ls fee fi fo fum
you will be told which of the four files "fee", "fi", "fo",
and "fum" exist. I