Pages

Tuesday, February 17, 2015

C Program to Count no of words in a string

C++ Program to Count no. of words in a string

#include<iostream.h>
#include<conio.h>
#include<stdio.h>

void main()
{
clrscr();
char a[20];
int i,count=0;
cout<<"Enter a string:";
gets(a);
for(i=0;a[i]!=

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.