yo this test print man....lets see...prettyprint works or not....
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("enter values of a and b:");
scanf("%d%d",&a.&b);
printf(".........";
getcch();
}
this is a program to caliculate greatest number in two numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("enter values of a and b :");
scanf("%d%D",&a,&b);
if(a<b);
{
printf("b is greater");
}
else
printf("a is greater");
getch();
}