0
write the statement that receives a double value and save it in a variable identified number please answer is urgently needed
3 Answers
0
Mention language also and show your attempt it is very simple #include<iostream>
int main()
{
double var=24.52;
cout<<var;
return 0;
}
0
please the statement should be in C language not C++
0
Mention language also and show your attempt it is very simple #include<stdio.h>
int main()
{
double var=24.52;
printf("%lf",var);
return 0;
}