Computer Science, asked by sivarajpow, 1 month ago

convert it to c program​

Attachments:

Answers

Answered by simonsaikia9
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