Skip to content

Instantly share code, notes, and snippets.

@snadahalli
Created November 4, 2013 05:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snadahalli/7298250 to your computer and use it in GitHub Desktop.
Save snadahalli/7298250 to your computer and use it in GitHub Desktop.
C Program to find the squares and cubes of a two digit odd number.
/***********************************************************
* You can use all the programs on www.c-program-example.com
* for personal and learning purposes. For permissions to use the
* programs for commercial purposes,
* contact info@c-program-example.com
* To find more C programs, do visit www.c-program-example.com
* and browse!
*
* Happy Coding
***********************************************************/
#include<stdio.h>
int main()
{
int num,num1;
int count=0;
printf("Enter a two digit odd number\n");
scanf("%d",&num);
num1=num;
while(num>0)
{
num=num/10;
count++;
}
if((num1%2) && (count==2))
{
printf("\nThe square of givenC Program to find the squares and cubes of a two digit odd number. number is: %d",num1*num1);
printf("\nThe cube of given number is: %d",num1*num1*num1);
}
else
{
printf("The number entered is not an two digit odd number\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment