User:Megan Hoogenboom/assignment4: Difference between revisions
Line 20: | Line 20: | ||
</source> | </source> | ||
Output: | |||
<source lang=bash> | |||
NOCHAR | |||
</source> | |||
<source lang=C> | <source lang=C> | ||
Line 39: | Line 49: | ||
return 0; | return 0; | ||
} | } | ||
</source> | |||
Output: | |||
<source lang=bash> | |||
</source> | </source> |
Revision as of 01:22, 9 November 2010
Finding text and replacing in C
#include "stdio.h"
#include "string.h"
#include "ctype.h"
void main() {
char a = 'a';
if (ispunct(a)) {
printf("CHAR\n");
}
else {
printf("NOCHAR\n");
}
printf("\n");
}
Output:
NOCHAR
#include "stdio.h"
#include "string.h"
#define MAXLINE 1000
int main () {
char line[MAXLINE];
int linelen;
int i;
char a = '1';
if (ispunct(a)) {
printf("CHAR\n");
}
printf("\n");
return 0;
}
Output: