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

What is the issue of my below program

#include <stdio.h>
#include <limits.h>

int main() {
printf("Largest short int value - %d\n", 32767);
printf("Smallest unsigned int value - %u\n", 0);
printf("Largest long int value - %ld\n", 9223372036854775807);

return 0;
}
by

1 Answer

iamabhishek
Please share the level number and lesson number so that I can help you.

Login / Signup to Answer the Question.