What would be the value of c?

Practice Floating Point Issues – What would be the value of c?
void main()
{
int c;
float a,b;
a= 245.05;
b = 40.02;
c =a+ b;
}

Practice Floating Point Issues – What would be the value of c?
void main()
{
int c;
float a,b;
a= 245.05;
b = 40.02;
c =a+ b;
}
What will be output of the following “C” code?

Practice Floating Point Issues – What will be output of the following “C” code?
#define mysizeof(a) (&a+1) - &a
void main()
{
float d;
printf("%d
", mysizeof(d) );
}
note: assume sizeof float is 8 bytes
If a = -11 and b = -3 what is the value of a%b?

Practice Floating Point Issues – If a = -11 and b = -3 what is the value of a%b?
What would be the value of i and k in below C program?

Practice Floating Point Issues – What would be the value of i and k in below C program?
void main() {
int i,j,k;
j = 5;
i = 2 *j/2;
k = 2 *(j/2);
}