blob: 52b0a2ed9f79be8bde88b3131b6980beed67df31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include<stdio.h>
#define MAX_LEN 10
/*
* Reads STDIN into string s. Is allowed to use && and ||.
*/
void getline_with_ops(char s[]) {
char c;
int i;
int lim = MAX_LEN;
for (i = 0; i < lim - 1 && (c = getchar()) != '\n' && c != EOF; ++i)
s[i] = c;
s[i] = '\0';
}
/*
* Reads STDIN into string s. Is not allowed to use && or ||.
*/
void getline_without_ops(char s[]) {
char c;
int i;
int lim = MAX_LEN;
for (i = 0; i < lim - 1; ++i)
if ((c = getchar()) != '\n')
if (c != EOF)
s[i] = c;
s[i] = '\0';
}
int main() {
char s[MAX_LEN];
//getline_with_ops(s);
getline_without_ops(s);
printf("%s\n", s);
}
|