C Examples: Goals of This Lecture
C Examples: Goals of This Lecture
1
Overview of this Lecture
• C programming examples
• Echo input to output
• Convert all lowercase letters to uppercase
• Convert first letter of each word to uppercase
2
Example #1: Echo (cont.)
int main(void) {
int c; Why int instead
of char?
c = getchar();
putchar(c);
Why return a
value?
return 0;
}
3
Read and Write Ten Characters
• Loop to repeat a set (block) of statements (e.g., for loop)
• Three expressions: initialization, condition, and increment
• E.g., start at 0, test for less than 10, and increment per iteration
#include <stdio.h>
Why not this instead:
int main(void) { for (i = 1; i <= 10; i++)
int c, i;
#include <stdio.h>
int main(void) {
int c;
putchar(c);
}
How would you terminate
return 0; this program?
} 8
4
Read and Write Until End-Of-File
• Test for end-of-file
• EOF is a global constant, defined in stdio.h
• The break statement jumps out of the innermost enclosing loop
5
Review of Example #1
• Character I/O
• Including stdio.h
• Functions getchar() and putchar()
• Representation of a character as an integer
• Predefined constant EOF
• Operators
• Assignment operator: =
• Increment operator: ++
• Relational operator to compare for equality: ==
• Relational operator to compare for inequality: !=
11
• Program design:
repeat
Read a character
If unsuccessful, break out of loop
If the character is lower-case, convert to upper-
case
Write the character
12
6
ASCII
American Standard Code for Information Interchange
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
0 NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI
16 DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US
32 SP ! " # $ % & ' ( ) * + , - . /
48 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
64 @ A B C D E F G H I J K L M N O
80 P Q R S T U V W X Y Z [ \ ] ^ _
96 ` a b c d e f g h i j k l m n o
112 p q r s t u v w x y z { | } ~ DEL
Implementation in C
#include <stdio.h>
int main(void) {
int c;
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
if ((c >= 97) && (c < 123))
c -= 32;
putchar(c);
}
return 0;
}
14
7
That works great. Your grade is …
B- 15
Why a B-minus?
16
8
Avoid Mysterious Numbers
#include <stdio.h>
int main(void) {
int c; Ugly;
ASCII only
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
if ((c >= 97) && (c < 123))
c -= 32;
putchar(c);
}
return 0;
} 17
9
Improvement: Existing Functions
Standard C Library Functions ctype(3C)
NAME
ctype, isdigit, isxdigit, islower, isupper, isalpha, isalnum, isspace, iscntrl, ispunct, isprint,
isgraph, isascii - character handling
SYNOPSIS
#include <ctype.h> DESCRIPTION
int isalpha(int c);
These macros classify character-
int isupper(int c); coded integer values. Each is a
int islower(int c); predicate returning non-zero for true, 0
int isdigit(int c); for false...
int isalnum(int c); The toupper() function has as a
int isspace(int c); domain a type int, the value of which is
int ispunct(int c); representable as an unsigned char or
int isprint(int c); the value of EOF.... If the argument of
toupper() represents a lower-case
int isgraph(int c); letter ... the result is the corresponding
int iscntrl(int c); upper-case letter. All other arguments
int toupper(int c); in the domain are returned unchanged.
int tolower(int c); 19
10
Building and Running
% ls
upper.c
% gcc217 upper.c –o upper
% ls
upper upper.c
% upper
We’ll be on time today!
WE’LL BE ON TIME TODAY!
^D
% 21
22
11
Output Redirection
% upper < upper.c > junk.c
% gcc217 junk.c –o junk
test.c:1:2: invalid preprocessing directive #INCLUDE
test.c:2:2: invalid preprocessing directive #INCLUDE
test.c:3: syntax error before "MAIN"
etc...
23
Review of Example #2
• Representing characters
• ASCII character set
• Character constants (e.g., ʻAʼ or ʻaʼ)
• Manipulating characters
• Arithmetic on characters
• Functions like islower() and toupper()
24
12
Example #3: Capitalize First Letter
• Capitalize the first letter of each word
• “cos 217 rocks” “Cos 217 Rocks”
25
letter
(print uppercase equivalent)
1
not-letter
2
(print)
letter
not-letter
(print)
(print)
• States
• Transitions labeled by characters (or categories)
• Optionally, transitions labeled by actions
26
13
Implementation Skeleton
#include <stdio.h>
#include <ctype.h>
int main (void) {
int c;
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
<process one character>
}
return 0;
} 27
not-letter letter
letter
Implementation
1 2
not-letter
<process one character> =
switch (state) {
case 1:
<state 1 action> if (isalpha(c)) {
putchar(toupper(c));
break; state = 2;
case 2: }
else putchar(c);
<state 2 action>
if (!isalpha(c))
break;
state = 1;
default: putchar(c);
<this should never happen>
}
28
14
Complete Implementation
#include <stdio.h>
#include <ctype.h>
int main(void) {
int c; int state=1;
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
switch (state) {
case 1:
if (isalpha(c)) {
putchar(toupper(c));
state = 2;
} else putchar(c);
break;
case 2:
if (!isalpha(c)) state = 1;
putchar(c);
break;
}
}
return 0;
}
29
15
Much better. Your grade is …
B 31
Why a B?
• What now?
• States should have names, not just 1, 2
32
16
Improvement: Names for States
33
17
OK, Thatʼs a B+
• What now?
• Should handle each state in a separate function
35
Improvement: Modularity
#include <stdio.h>
#include <ctype.h>
enum Statetype {NORMAL,INWORD};
enum Statetype handleNormalState(int c) {...}
enum Statetype handleInwordState(int c) {...}
int main(void) {
int c;
enum Statetype state = NORMAL;
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
switch (state) {
case NORMAL:
state = handleNormalState(c);
break;
case INWORD:
state = handleInwordState(c);
break;
}
}
return 0;
}
36
18
Improvement: Modularity
enum Statetype handleNormalState(int c) {
enum Statetype state;
if (isalpha(c)) {
putchar(toupper(c));
state = INWORD;
}
else {
putchar(c);
state = NORMAL;
}
return state;
}
37
Improvement: Modularity
enum Statetype handleInwordState(int c) {
enum Statetype state;
putchar(c);
if (!isalpha(c))
state = NORMAL;
else
state = INWORD;
return state;
}
38
19
OK, Thatʼs an A-
• What now?
• Should add (at least) function-level comments
39
Function Comments
40
20
Function Comment Examples
• Bad main() function comment
Read a character from stdin. Depending upon the
current DFA state, pass the character to an
appropriate state-handling function. The value
returned by the state-handling function is the
next DFA state. Repeat until end-of-file.
• Describes how the function works
41
An “A” Effort
#include <stdio.h>
#include <ctype.h>
/*------------------------------------------------------------*/
/* handleNormalState: Implement the NORMAL state of the DFA. */
/* c is the current DFA character. Return the next state. */
/*------------------------------------------------------------*/
enum Statetype handleNormalState(int c) {
enum Statetype state;
if (isalpha(c)) {
putchar(toupper(c));
state = INWORD;
}
else {
putchar(c);
state = NORMAL;
}
return state;
}
42
21
An “A” Effort
/*------------------------------------------------------------*/
/* handleInwordState: Implement the INWORD state of the DFA. */
/* c is the current DFA character. Return the next state. */
/*------------------------------------------------------------*/
enum Statetype handleInwordState(int c) {
enum Statetype state;
putchar(c);
if (!isalpha(c))
state = NORMAL;
else
state = INWORD;
return state;
}
43
An “A” Effort
/*------------------------------------------------------------*/
/* main: Read text from stdin. Convert the first character */
/* of each "word" to uppercase, where a word is a sequence of */
/* letters. Write the result to stdout. Return 0. */
/*------------------------------------------------------------*/
int main(void) {
int c;
enum Statetype state = NORMAL;
/* Use a DFA approach. state indicates the state of the DFA. */
for ( ; ; ) {
c = getchar();
if (c == EOF) break;
switch (state) {
case NORMAL:
state = handleNormalState(c);
break;
case INWORD:
state = handleInwordState(c);
break;
}
}
return 0;
} 44
22
Review of Example #3
• Deterministic finite state automaton
• Two or more states
• Transitions between states
• Next state is a function of current state and current character
• Actions can occur during transitions
45
‘a’
46
23
Yet Another DFA Example
Question #4 from fall 2005 midterm
Identify whether or not a string is a floating-point number
47
Summary
• Examples illustrating C
• Overall program structure
• Control statements (if, while, for, and switch)
• Character input/output (getchar() and putchar())
48
24