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

Level 3> lesson 2

I am not able to fill first two blanks.
by

2 Answers

sam5epi0l
Hi Aditi, here is a possible solution 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;

}
aditi2005
Thank you for the solution.
But now I have a doubt that what is the use of numerical suffixes if I am stating the data type myself ?

Login / Signup to Answer the Question.