Recent Posts

9-latest-250px-course

Write a C program for Implementation of formula : c = a3 +c3+ b3

Write a C program for Implementation of formula : c = a3 +c3b3



Program:-     

#include <stdio.h>

#include <math.h>

#include <conio.h>

   void main()

{

int a,b,c C;

clrscr();

printf("Enter the value of a,c and b");

scanf("%d%d",&a,&b,&c);

c=pow(a,3)+pow(b,3)+pow(c,3);

printf("%d",C);

getch();

}

Output:-

input:-
Enter the value of a, b,c
a=2
b=2
c=2
output:-
12
SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment