“Co jest pływakiem w C” Kod odpowiedzi

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

Co jest pływakiem w 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

Odpowiedzi podobne do “Co jest pływakiem w C”

Pytania podobne do “Co jest pływakiem w C”

Więcej pokrewnych odpowiedzi na “Co jest pływakiem w C” w C

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu