diff options
Diffstat (limited to 'wk4/lect/compare.c')
-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) { |