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

Numeric Value suffixes

I'm stuck in this exercice.
by

1 Answer

iamabhishek
Here, this is the correct code:

#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.