diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-27 20:27:15 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-27 20:27:15 +0000 |
commit | 0e5606dad1d2d4c06695ce009986a34905ac9313 (patch) | |
tree | 13e63af72a65522627e52daa336908f2fe63cbb4 /wk4/lect | |
parent | ff750b5bcdb29cf9a4ce2117d857e35cd508a948 (diff) |
Tue, Feb 27, 2024, 12:27 PM -08:00
Diffstat (limited to 'wk4/lect')
-rw-r--r-- | wk4/lect/compare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wk4/lect/compare.c b/wk4/lect/compare.c index 266ad89..98ee8c2 100644 --- a/wk4/lect/compare.c +++ b/wk4/lect/compare.c @@ -6,8 +6,8 @@ int main(void) { - string s = get_string("s: "); - string t = get_string("t: "); + char *s = get_string("s: "); + char *t = get_string("t: "); if (s==t) { |