Up through lcthw ex14
This commit is contained in:
parent
d4b5c737e5
commit
8ac30a239d
4
lcthw/.ex14.argv
Normal file
4
lcthw/.ex14.argv
Normal file
@ -0,0 +1,4 @@
|
||||
eggs
|
||||
legs
|
||||
pegs
|
||||
jegs
|
1
lcthw/.gitignore
vendored
1
lcthw/.gitignore
vendored
@ -7,3 +7,4 @@ ex10
|
||||
ex11
|
||||
ex12
|
||||
ex13
|
||||
ex14
|
||||
|
41
lcthw/ex14.c
Normal file
41
lcthw/ex14.c
Normal file
@ -0,0 +1,41 @@
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
// forward declarations
|
||||
int can_print_it(char ch);
|
||||
void print_letters(char arg[]);
|
||||
|
||||
void print_arguments(int argc, char *argv[])
|
||||
{
|
||||
int i = 0;
|
||||
|
||||
for (i = 0; i < argc; i++) {
|
||||
print_letters(argv[i]);
|
||||
}
|
||||
}
|
||||
|
||||
void print_letters(char arg[])
|
||||
{
|
||||
int i = 0;
|
||||
|
||||
for (i = 0; arg[i] != '\0'; i++) {
|
||||
char ch = arg[i];
|
||||
|
||||
if (can_print_it(ch)) {
|
||||
printf("'%c' == %d ", ch, ch);
|
||||
}
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
int can_print_it(char ch)
|
||||
{
|
||||
return isalpha((int)ch) || isblank((int)ch);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
print_arguments(argc, argv);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user