Program To find Cube of A Number in C LANGUAGE - Easy Codes - The Indian Creators.




Hello guys! Welcome to this Blog. 

Today you'll be going through the journey of Coding in C LANGUAGE. 

To run this program you'll need TURBO Software if you have computer or laptop.

If you have mobile phone (Android or Ios) you can download any compiler app from Play store or App Store. 

Just Copy this code and enjoy your program. 

If you want more and simple programs like this then comment below and share it your friends, so that they can also make their own program. Follow me now.

Copy and Paste this code in your compiler


#include <stdio.h>

int main()
{
 int a, cube;
 printf("Enter the number to find Cube :");
 scanf("%d", &a);
 cube = a*a*a;
 printf("The cube of the Entered number is: %d", cube);
    return 0;
}

Post a Comment

Comment your queries below.

Previous Post Next Post