Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 3 > Lesson 6

#include <stdio.h>

int main() {

float x = ____;
____ y = x;
____ z = ____;

printf("z = %c", z);

return 0;

}
by

1 Answer

sam5epi0l
Try this code:

#include <stdio.h>

int main() {

float x = 70.5;
int y = x;
char z = y;

printf("z = %c", z);

return 0;

}

Login / Signup to Answer the Question.