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

What is wrong in this? I am not able to move ahead

#include <stdio.h>

int main() {

long double ldbl = 296.000000000l;

unsigned int uint = 2000U;

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

return 0;

}
by

0 Answers

No Answer posted yet.

Login / Signup to Answer the Question.