C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28691
Number of posts: 94711

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
question Posted by Panasonic99 on 5 Aug 2005 at 6:58 PM
The user will enter: "C is fun!" and then presses enter then cntl-d?

(the isalpha() function will return a 1 if the character is between a-z or A-Z and a 0 otherwise. Hitting cntl-d is equivalent to 'EOF')

#include <stdio.h>
#include <ctype.h>
void main()
{
char ch;
int count = 0;
while ( (ch = getchar()) ! = 'EOF')
{
if (isalpha(ch))
count++;
}
printf("%d\n", count);
}





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.