Computer Science, asked by janhaviraikar88, 7 months ago

a) #include<iostream.h>
#define PI 3.14159
int main ()
{
float r = 2;
float circle;
circle = 2 + PI * I;
cout << circle;
return 0;
}​

Answers

Answered by Imblank
5

Answer:

Error 'I' is undefined

if you wrote circle = 2+PI*r

It will print :

8.28318

Read my bio once

Answered by yashaswi084
1

Answer:It will give error as 'I' is not defined

Explanation:

It will give error as 'I' is not defined

if you wrote circle = 2+PI*r

It will print :

8.28318

Similar questions