Horje
product of array in cpp Code Example
product of array in cpp
int a[5] = {2,3,4,5,6};
    int product = 1;
    for(int i=0;i<5;i++)
    {
        product *= a[i];
    }
    cout<<product;




Cpp

Related
what is the format specifier for dword c++ Code Example what is the format specifier for dword c++ Code Example
how to seek to the start of afile in c++ Code Example how to seek to the start of afile in c++ Code Example
http://nv-study.ru/http://nv-study.ru/http://nv-study.ru/ Code Example http://nv-study.ru/http://nv-study.ru/http://nv-study.ru/ Code Example
naruto Code Example naruto Code Example
formal parameter c++ Code Example formal parameter c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7