Q:

C++ program to Find Cube of Number using MACROS

belongs to collection: C++ Basic Solved Programs

0

Write a C++ program to Find Cube of Number using MACROS. Here’s simple program to Find Cube of Number using MACROS in C++ Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Here is source code of the C++ program to Find Cube of Number using MACROS. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.

 
 

SOURCE CODE : 

/*  C++ program to Find Cube of Number using MACROS  */

#include<iostream>
using namespace std;

#define CUBE(x) (x*x*x)

int main()
{
    int n,cube;

    cout<<"Enter any positive number :: ";
    cin>>n;

    cube=CUBE(n);

    cout<<"\nThe Cube of Entered Number [ "<<n<<" ] is :: [ "<<cube<<" ]\n";

    return 0;
}

Output : :


/*  C++ program to Find Cube of a Number using MACROS  */

Enter any positive number :: 10

The Cube of Entered Number [ 10 ] is :: [ 1000 ]

Process returned 0

Above is the source code for C++ program to Find Cube of a Number using MACROS which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Basic Solved Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C++ Program to Find whether given Number is Odd or... >>
<< Write a C++ Program to Calculate Compound Interest...