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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?