The harder the conflict, the more glorious the triumph.

This is default featured slide 1 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);               ...

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);               ...