“Was ist float in c” Code-Antworten

c float

// create float and assign value
// print float value to console
#include <stdio.h>

int main()
{
    float pi = 3.14;
    float dollars;
    dollars = 32.27;

    printf("I have %f dollars", dollars);       
  
	// controls the number of numbers shown after the decimal point
    printf("\nI have %0.2f dollars", dollars); 
Dirty Moose

Was ist float in c

float: It is used to store decimal numbers (numbers with floating point value) with single precision. double: It is used to store decimal numbers (numbers with floating point value) with double precision.
Santino

Ähnliche Antworten wie “Was ist float in c”

Fragen ähnlich wie “Was ist float in c”

Weitere verwandte Antworten zu “Was ist float in c” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen