convert it to c program
Attachments:
Answers
Answered by
0
Answer:
#include <stdio.h>
#include <math.h>
int main() {
int a,b,c;
a= 6;
b= 8;
c= 15;
if(pow(b,a)<a)
{
b=a;
}
printf("a+b+c= %d",a+b+c);
return 0;
}
Similar questions