ex14
This commit is contained in:
parent
eb2ded821b
commit
14c02e27c4
1
lcthw-remnants-2/.gitignore
vendored
1
lcthw-remnants-2/.gitignore
vendored
@ -11,3 +11,4 @@ ex10
|
|||||||
ex11
|
ex11
|
||||||
ex12
|
ex12
|
||||||
ex13
|
ex13
|
||||||
|
ex14
|
||||||
|
41
lcthw-remnants-2/ex14.c
Normal file
41
lcthw-remnants-2/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(ch) || isblank(ch);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
print_arguments(argc, argv);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user