C++ program to Find Cube of Number using MACROS

By | 24.12.2016

Find Cube of Number using MACROS


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.


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 .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

5 4 votes
Article Rating
Category: Basic Programs C++ Programming Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Gabby S.sudan

I’m really thankful to you guys for putting these codes here.