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

Write a C++ Program to Find Smallest in Any Array of 10 Floats Using Pointer - Computer Science 1

Advertisements
Advertisements

प्रश्न

 Write a C++ program to find smallest in any array of 10 floats using pointer.

थोडक्यात उत्तर

उत्तर

 float* min (float* p[ ], int n)
{
float* pmax = p[0];
for (int i = 1; i<n; i++)
{  if (*p[i] < *pmax)
pmax = p[i]; }
retrun pmax;
}
void main ()
{
float a[10] = {44.4, 77.7, 22.2, 88.8, 66.6, 33.3, 99.9, 55,5, 32,6, 49.8};
float* p[10];
for (int i = 0; i < 10; i++)
p[i]=&a[i]; //p[i] points to a[i]
float* M = max (p, 10);
count<<M<<“,”<<*M<<endl;
}

shaalaa.com
C++ Programming
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2018-2019 (February) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×