C++ Program to Implement Parallel Array

This C++ Program demonstrates the implementation of Parallel Array.

Here is source code of the C++ Program to demonstrate the implementation of Parallel Array. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ Program to Implement Parallel Array
  3.  */
  4. #include <iostream>
  5. #include <iomanip>
  6. #include <string>
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11.     int i = 0, h = 0, saved = 0; 
  12.     int g[ ] = {87, 99, 70, 75, 77, 91, 95};
  13.     string s [ ]= {"S1", "S2", "S3", "S4", "S5", "S6", "S7"};
  14.     for(i = 0; i < sizeof(g)/sizeof(g[0]); i++)
  15.     {
  16.         if (g[i] > h)
  17.         {
  18.             h = g[i];
  19.             saved = i;
  20.         }
  21.     }
  22.     cout << "Highest marks:" << h << " of Student: " << s[saved]<<endl;
  23.     return 0;
  24. }

$ g++ parallel_array.cpp
$ a.out
 
Highest marks:99 of Student: S2
 
------------------
(program exited with code: 1)
Press return to continue

Sanfoundry Global Education & Learning Series – 1000 C++ Programs.

advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.

👉 For weekly programming practice and certification updates, join Sanfoundry’s official WhatsApp & Telegram channels

advertisement
Manish Bhojasia – Founder & CTO at Sanfoundry

I’m Manish, Founder & CTO at Sanfoundry, with 25+ years of experience across Linux systems, SAN technologies, advanced C programming, and building large-scale, performance-driven learning and certification platforms focused on clear skill validation.

LinkedIn  ·  YouTube MasterClass  ·  Telegram Classes  ·  Career Guidance & Conversations