Computer Science, asked by chhavi5, 1 year ago

Write a c++ program using functions and reference ?

Answers

Answered by PrajwalRatnaparkhi
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 ( ) ;
}

chhavi5: Thank u so much
PrajwalRatnaparkhi: welcome
SakshiBidwe: He
Similar questions