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

Level3 lesson2

cant solve need the code
by

1 Answer

sam5epi0l
Hello, here is possible solution:


#include <stdio.h>

int main() {

long double ldbl = 147.470000L;

unsigned int uint = 20000U;

printf("Value of ldbl is: %Lf\n", ldbl);
printf("Value of uint is: %d", uint);

return 0;

}

Login / Signup to Answer the Question.