Skip to content

Commit 22b1e54

Browse files
author
sam
committed
Add file and code from project1 to project4
Add material from project1 to project4
1 parent 702fae8 commit 22b1e54

File tree

36 files changed

+1173
-2
lines changed

36 files changed

+1173
-2
lines changed
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
TARGETS = sender.exe receiver.exe
2+
3+
all: $(TARGETS)
4+
5+
run: all
6+
mkfifo test.fifo
7+
xterm -e ./sender.exe &
8+
sleep 5
9+
./receiver.exe
10+
11+
run2: all
12+
mkfifo test.fifo
13+
./receiver.exe &
14+
sleep 5
15+
xterm -e ./sender.exe &
16+
17+
clean:
18+
rm -f *.exe
19+
rm -f *.fifo
20+
21+
%.exe: %.c
22+
gcc -o $@ $^
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#include <sys/types.h>
2+
#include <sys/stat.h>
3+
#include <fcntl.h>
4+
5+
#include <stdio.h>
6+
7+
main()
8+
{
9+
int fd;
10+
char buf[] = "abcdefghijklmnopqrstuvwxyz";
11+
12+
fd = open ("test.fifo", O_RDONLY);
13+
read (fd, buf, 100);
14+
15+
printf ("read string from FIFO: %s\n", buf);
16+
17+
return 0;
18+
}//main()
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#include <sys/types.h>
2+
#include <sys/stat.h>
3+
#include <fcntl.h>
4+
5+
#include <string.h>
6+
7+
#include <stdio.h>
8+
9+
main()
10+
{
11+
int fd;
12+
13+
14+
printf ("sending string Hello!\n");
15+
16+
fd = open ("test.fifo", O_WRONLY);
17+
write (fd, "Hello!", strlen("Hello!")+1);
18+
19+
printf ("DONE! press CTRL-C to exit\n");
20+
while (1);
21+
22+
return 0;
23+
}//main()
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
C_SRC_FILES += $(wildcard *.c)
2+
TARGETS = $(C_SRC_FILES:.c=)
3+
GCC_FLAGS +=
4+
5+
all: $(TARGETS)
6+
7+
clean:
8+
rm -f *.o
9+
rm -f $(TARGETS)
10+
rm -f *.txt
11+
rm -f *.bin
12+
13+
%: %.c
14+
gcc -o $@ $(GCC_FLAGS) $^
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
FILE *fp;
8+
int buf[100];
9+
int n;
10+
int i;
11+
12+
fp = fopen (argv[1], "r");
13+
if (fp==NULL) return -1;
14+
15+
n = fread (buf, sizeof(int), 100, fp);
16+
for (i=0;i<n;i++)
17+
printf ("0x%08x ", buf[i]);
18+
printf ("\n");
19+
20+
return 0;
21+
}//main ()
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
unsigned char buf [400];
8+
int n;
9+
int i;
10+
FILE *fp;
11+
char c;
12+
13+
fp = fopen (argv[1], "r");
14+
n = fread (buf, sizeof(char), 400, fp);
15+
16+
for (i=0;i<n;i++) {
17+
c = (buf[i]>='a' && buf[i]<='z')? buf[i]: '.';
18+
printf ("0x%02x\t%c\n", buf[i], c);
19+
}
20+
printf ("\n");
21+
22+
return 0;
23+
}//main ()
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
FILE *fp;
8+
char str[100];
9+
10+
fp = fopen (argv[1], "r");
11+
if (fp==NULL) return -1;
12+
fscanf (fp, "%s", str);
13+
printf ("%s\n", str);
14+
15+
return 0;
16+
}//main ()
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
FILE *fp;
8+
int a[] = {0x12345678, 0xabcdef00, 0x98765432, 0xaabbccdd, 0x11223344};
9+
10+
fp = fopen (argv[1], "w");
11+
fwrite (a, sizeof(int), 5, fp);
12+
fclose (fp);
13+
14+
return 0;
15+
}//main ()
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
int a[] = {0x12345678, 0xabcdef00, 0x98765432, 0xaabbccdd, 0x11223344};
8+
FILE *fp;
9+
10+
fp = fopen (argv[1], "w");
11+
fwrite (a, 5, sizeof(int), fp);
12+
fprintf (fp, "hello");
13+
fclose (fp);
14+
15+
return 0;
16+
}//main
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#include <stdio.h>
2+
3+
main (argc, argv)
4+
int argc;
5+
char *argv[];
6+
{
7+
FILE *fp;
8+
9+
fp = fopen (argv[1], "w");
10+
fprintf (fp, "Hello!\n");
11+
fclose (fp);
12+
13+
return 0;
14+
}//main()
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+

0 commit comments

Comments
 (0)