Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Updated with few syntax changes & basic condition changes. #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions chapter01/1-13a.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ int main(void)
count = 0;
while ((c = getchar()) != EOF) {

if (c == ' ' || c == '\t' || c == '\n')
if(c == ' ' || c == '\t' || c == '\n')
state = OUT;
else
state = IN;

else state = IN;

if (state == IN)
if(state == IN)
++count;

if (state == OUT) {
if(state == OUT) {
if (count < 4)
++lengths[0];
++lengths[0];
else if (count >= 4 && count < 8)
++lengths[1];
else if (count >= 8 && count < 12)
Expand All @@ -52,22 +52,22 @@ int main(void)

printf("\nVertical Histogram:\n");
longestBar = lengths[0];
for (i = 0; i < SIZE; ++i) /* find the longestBar */
if (lengths[i] > longestBar )
for(i = 0; i < SIZE; ++i) /* find the longestBar */
if(lengths[i] > longestBar )
longestBar = lengths[i];
longestBar /= SCALE;
longestBar/= SCALE;

/* print vertical histogram */
while (longestBar > 0) {
for (i = 0; i < SIZE; ++i)
if (lengths[i] != 0) {
if (lengths[i] / SCALE < longestBar)
printf(" %2c", ' ');
printf(" %2c",' ');
else
printf(" %2c", '*');
}
printf("\n");
--longestBar;
longestBar--;
}

/* print value of each element (bar) */
Expand Down
2 changes: 1 addition & 1 deletion chapter03/3-4.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <stdio.h>
#include <string.h>
#include <limits.h>

#include<conio.h>
#define MAXLEN 1000

void itoa(unsigned, char []);
Expand Down