User:Megan Hoogenboom/assignment4
< User:Megan Hoogenboom
Revision as of 01:20, 9 November 2010 by Megan Hoogenboom (talk | contribs) (→Finding text and replacing)
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");
}
#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;
}