Hi, what is the output of foll. prog and why?
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
cin>>a>>b;
cout<<"\n"<<a<<"\n"<<b;
getch();
}
if 'A'(character 'A' instead of any Integer value) is given as its first input what will happen and why???