/ Sams Teach Yourself C in 21 Days (6th Edition)
/ STYC216E.ISO / mac / Examples / Day17 / strcat.c ![]() | < prev | next > |
MacBinary | 2002-08-11 | 896 b | [TEXT/LMAN] |
Confidence | Program | Detection | Match Type | Support |
---|---|---|---|---|
66% | dexvert | Compact Compressed (Unix) (archive/compact) | ext | Supported |
10% | dexvert | MacBinary (archive/macBinary) | fallback | Supported |
1% | dexvert | Text File (text/txt) | fallback | Supported |
100% | file | MacBinary II, Sun Aug 11 10:30:32 2002, modified Sun Aug 11 10:30:32 2002, creator 'LMAN', type ASCII, 365 bytes "strcat.c" , at 0x1ed 286 bytes resource | default (weak) | |
99% | file | data | default | |
74% | TrID | Macintosh plain text (MacBinary) | default | |
25% | TrID | MacBinary 2 | default (weak) | |
100% | siegfried | fmt/1762 MacBinary (II) | default | |
100% | lsar | MacBinary | default |
id metadata | |
---|---|
key | value |
macFileType | [TEXT] |
macFileCreator | [LMAN] |
+--------+-------------------------+-------------------------+--------+--------+
|00000000| 00 08 73 74 72 63 61 74 | 2e 63 00 00 00 00 00 00 |..strcat|.c......|
|00000010| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000020| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000030| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000040| 00 54 45 58 54 4c 4d 41 | 4e 00 00 ff ff ff ff 00 |.TEXTLMA|N.......|
|00000050| 00 00 00 00 00 01 6d 00 | 00 01 1e b9 7c 25 88 b9 |......m.|....|%..|
|00000060| 7c 25 88 00 00 00 00 00 | 00 00 00 00 00 00 00 00 ||%......|........|
|00000070| 00 00 00 00 00 00 00 00 | 00 00 81 81 09 a1 00 00 |........|........|
|00000080| 2f 2a 20 54 68 65 20 73 | 74 72 63 61 74 28 29 20 |/* The s|trcat() |
|00000090| 66 75 6e 63 74 69 6f 6e | 2e 20 2a 2f 0d 0a 0d 0a |function|. */....|
|000000a0| 23 69 6e 63 6c 75 64 65 | 20 3c 73 74 64 69 6f 2e |#include| <stdio.|
|000000b0| 68 3e 0d 0a 23 69 6e 63 | 6c 75 64 65 20 3c 73 74 |h>..#inc|lude <st|
|000000c0| 72 69 6e 67 2e 68 3e 0d | 0a 0d 0a 63 68 61 72 20 |ring.h>.|...char |
|000000d0| 73 74 72 31 5b 32 37 5d | 20 3d 20 22 61 22 3b 0d |str1[27]| = "a";.|
|000000e0| 0a 63 68 61 72 20 73 74 | 72 32 5b 32 5d 3b 0d 0a |.char st|r2[2];..|
|000000f0| 0d 0a 69 6e 74 20 6d 61 | 69 6e 28 20 76 6f 69 64 |..int ma|in( void|
|00000100| 20 29 0d 0a 7b 0d 0a 20 | 20 20 20 69 6e 74 20 6e | )..{.. | int n|
|00000110| 3b 0d 0a 0d 0a 20 20 20 | 20 2f 2a 20 50 75 74 20 |;.... | /* Put |
|00000120| 61 20 6e 75 6c 6c 20 63 | 68 61 72 61 63 74 65 72 |a null c|haracter|
|00000130| 20 61 74 20 74 68 65 20 | 65 6e 64 20 6f 66 20 73 | at the |end of s|
|00000140| 74 72 32 5b 5d 2e 20 2a | 2f 0d 0a 0d 0a 20 20 20 |tr2[]. *|/.... |
|00000150| 20 73 74 72 32 5b 31 5d | 20 3d 20 27 5c 30 27 3b | str2[1]| = '\0';|
|00000160| 0d 0a 0d 0a 20 20 20 20 | 66 6f 72 20 28 6e 20 3d |.... |for (n =|
|00000170| 20 39 38 3b 20 6e 3c 20 | 31 32 33 3b 20 6e 2b 2b | 98; n< |123; n++|
|00000180| 29 0d 0a 20 20 20 20 7b | 0d 0a 20 20 20 20 20 20 |).. {|.. |
|00000190| 20 20 73 74 72 32 5b 30 | 5d 20 3d 20 6e 3b 0d 0a | str2[0|] = n;..|
|000001a0| 20 20 20 20 20 20 20 20 | 73 74 72 63 61 74 28 73 | |strcat(s|
|000001b0| 74 72 31 2c 20 73 74 72 | 32 29 3b 0d 0a 20 20 20 |tr1, str|2);.. |
|000001c0| 20 20 20 20 20 70 75 74 | 73 28 73 74 72 31 29 3b | put|s(str1);|
|000001d0| 0d 0a 20 20 20 20 7d 0d | 0a 20 20 20 20 72 65 74 |.. }.|. ret|
|000001e0| 75 72 6e 20 30 3b 0d 0a | 7d 0d 0a 0d 0a 00 00 00 |urn 0;..|}.......|
|000001f0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000200| 00 00 01 00 00 00 01 00 | 00 00 00 00 00 00 00 1e |........|........|
|00000210| 54 68 69 73 20 72 65 73 | 6f 75 72 63 65 20 66 6f |This res|ource fo|
|00000220| 72 6b 20 69 6e 74 65 6e | 74 69 6f 6e 61 6c 6c 79 |rk inten|tionally|
|00000230| 20 6c 65 66 74 20 62 6c | 61 6e 6b 20 20 20 00 00 | left bl|ank ..|
|00000240| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000250| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000260| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000270| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000280| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000290| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002a0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002b0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002c0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002d0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002e0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|000002f0| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000300| 00 00 01 00 00 00 01 00 | 00 00 00 00 00 00 00 1e |........|........|
|00000310| 00 00 00 00 00 00 00 00 | 00 1c 00 1e ff ff 00 00 |........|........|
|00000320| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000330| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000340| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000350| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000360| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
|00000370| 00 00 00 00 00 00 00 00 | 00 00 00 00 00 00 00 00 |........|........|
+--------+-------------------------+-------------------------+--------+--------+