This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Detailed Software Testing Tutorials and Interview Questions.

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Detailed Software Testing Tutorials and Interview Questions.3

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Detailed Software Testing Tutorials and Interview Questions.3

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Detailed Software Testing Tutorials and Interview Questions.3

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Detailed Software Testing Tutorials and Interview Questions.3

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Thursday 4 October 2012

Count The Repeated Letter

#include <stdio.h>

#include <conio.h>

#include <string.h>

 

int main()

{

        char stng[20],rpt;

        int count, i;

        clrscr();

       

        printf("*****Program to Count The Repeated Letter*****");

        printf("\n\nEnter word : ");

        gets(stng);

       

        printf("Enter character : ");

        scanf("%c",&rpt);

       

        count = 0;

        i = 0;

        while(i != 19)

        {

                if(stng[i]==rpt)

                        count++;

                i++;

        }

       

        printf("\n%c is %d times repead.",rpt,count);

       

        getch();

        return 0;

}

HTML 5 Tutorial - Part 7


HTML 5 Tutorial - Part 6


HTML 5 Tutorial - Part 5


HTML 5 Tutorial - Part 4


HTML 5 Tutorial - Part 3


HTML 5 Tutorial - Part 2


HTML 5 Tutorial - Part 1