Write a c++ program using functions and reference ?
Answers
Answered by
3
using conditional
#include <iostream.h>
#include. <conio.h>
void main ( )
{
clrscr ( ) ;
int A,B ;
cin >> A >> B;
if (A > B)
cout << "\n A is bigger";
else
cout << " \n B us bigger";
getch ( ) ;
}
#include <iostream.h>
#include. <conio.h>
void main ( )
{
clrscr ( ) ;
int A,B ;
cin >> A >> B;
if (A > B)
cout << "\n A is bigger";
else
cout << " \n B us bigger";
getch ( ) ;
}
chhavi5:
Thank u so much
Similar questions