Answers for "Float and Double Input/Output"

C
0

Float and Double Input/Output

#include <stdio.h>
int main()
{
    float num1;
    double num2;
    
    printf("Enter a number: ");
    scanf("%f", &num1);
    printf("Enter another number: ");
    scanf("%lf", &num2);
  
    printf("num1 = %f\n", num1);
    printf("num2 = %lf", num2);
  
    return 0;
}
Posted by: Guest on March-03-2022

Code answers related to "C"

Browse Popular Code Answers by Language