मराठी
महाराष्ट्र राज्य शिक्षण मंडळएचएससी विज्ञान (संगणक विज्ञान) इयत्ता १२ वी

Write a Program in C++ to Accept Two Integer Values in Main· Function, Pass Them to Function Great() Using Call by Value and Find Greater Number, Function Great() Should Not Return Any Value. - Computer Science 1

Advertisements
Advertisements

प्रश्न

Write a program in C++ to accept two integer values in main· function, pass them to function great() using call by value and find greater number, function great() should not return any value.

उत्तर

void great (int, int);
void main()
{
  int a, b;
  cout <<"Enter two no=";
  cin>> a>>b;
  great(a, b);
  getch();
}
void great (int p, int q)
{
  if (p > q)
  {
    cout << p << " is big";
  }
  else
  {
    cout << q << " is big";
  }
}
shaalaa.com
C++ Programming
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2014-2015 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×