This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int c, nw, nc, i, count[10], total; | |
count[0] = 0; | |
count[1] = 0; | |
count[2] = 0; | |
count[3] = 0; | |
count[4] = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int c, wc, count[10]; | |
count[0] = 0; | |
count[1] = 0; | |
count[2] = 0; | |
count[3] = 0; | |
count[4] = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int i, c, counts[256]; | |
for (i = 0; i < 256; ++i) | |
counts[i] = 0; | |
while((c = getchar()) != EOF) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int c, counts[256]; | |
while((c = getchar()) != EOF) | |
++counts[c]; | |
printf("%d\n", counts[c]); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int c, i, nwhite, nother; | |
int ndigit[10]; /* okey, so this make a "array" with 10 variables/values in it? */ | |
nwhite = nother = 0; | |
for (i = 0; i < 10; ++i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int c; | |
while ((c = getchar()) != EOF) { | |
if (c == '\t' || c == '\n') | |
putchar('\n'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* FOOBAR */ | |
#include <stdio.h> | |
main() | |
{ | |
long nc; | |
nc = 0; | |
while (getchar() != EOF) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* FOOBAR */ | |
#include <stdio.h> | |
main() | |
{ | |
int fuu; | |
int c; | |
fuu = ((c=getchar()) != EOF); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error: | |
foo.c: In function 'main': | |
foo.c:7:9: warning: unknown escape sequence: '\c' [enabled by default] | |
code: | |
/* FOOBAR */ |