Computer Science, asked by narendrasinghcm, 6 months ago

perform the following : assign the value of pie(3.142857....) to a variable with the requisite data type​

Answers

Answered by koushikvns
3

Answer:

Double data type or Float data type

Explanation:

you can write like :

double a ;

a=3.142857;

--------------------------or

float a;

a= 3.142857;

Similar questions