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

In level 2 lesson 4 i have solve the code correcly but it still doesn't continue why?

This is my answer:

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

int main() {
printf("Here is the largest int value - %d", INT_MAX);
return 0;
}
by

1 Answer

xstra
try adding instead of INT_MAX the number : 2147483647 .That's what worked for me.

Login / Signup to Answer the Question.