Computer Science, asked by kgfsoumo, 2 months ago

float a = 14; int c = 10;
Find double b= a % c;​

Answers

Answered by pallavisaxena945
1

Answer:

iTz Me ❤️

FoLLow Me

And tHaNks To All My aNsweRs

Answered by Pakiki
0

Predict the output of the following C program.

#include<stdio.h>

int main()

{

float x = 0.1;

if (x == 0.1)

printf("IF");

else if (x == 0.1f)

printf("ELSE IF");

else

printf("ELSE");

}

The output of above program is “ELSE IF” which means the expression “x == 0.1” returns false and expression “x == 0.1f” returns true.

Let consider the following program to understand the reason behind the above output.

#include<stdio.h>

int main()

{

float x = 0.1;

printf("%d %d %d", sizeof(x), sizeof(0.1), sizeof(0.1f));

return 0;

}

The output of above program is "4 8 4" on a typical C compiler.

It actually prints size of float, size of double and size of float.

Similar questions