Prototype function to calculate cube and output result - C++ Function

C++ examples for Function:Useful Function

Description

Prototype function to calculate cube and output result

Demo Code

#include <iostream>
using namespace std;

int cube(int y); // function prototype

int main() {//from   ww  w.  j  a v a2 s .  com
   int x{0};

   for (x = 1; x <= 10; x++) { // loop 10 times
      cout << cube(x) << endl; // calculate cube of x and output results
   }
}

// definition of function cube
int cube(int y) {
   return y * y * y;
}

Result


Related Tutorials