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.

Wednesday 22 August 2012

Greatest value between Three Numbers


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

void main()
{
                int a,b,c;
                clrscr();

                printf("Enter the A number : ");
                scanf("%d",&a);

                printf("Enter the A number : ");
                scanf("%d",&b);

                printf("Enter the C number : ");
                scanf("%d",&c);

                if(a>b)
                {
                                if(a>c)
                                {
                                                printf("A is the greatest Number.");
                                }
                }
                else
                {
                                if(b>c)
                                {
                                                printf("B is the greatest Number.");
                                }
                                else
                                {
                                                printf("C is the greatest Number.");
                                }
                }
                getch();
}

Greatest value between Two Numbers


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

void main()
{
                int a,b;
                clrscr();

                printf("Enter the first number : ");
                scanf("%d",&a);

                printf("Enter the second number : ");
                scanf("%d",&b);

                if(a>b)
                {
                                printf("A is greater than B\n");
                }
                else
                {
                                printf("B is greater than A\n");
                }
               
                getch();
}