Liste des Groupes | Revenir à cl c |
On 3/19/25 13:23, DFS wrote:I saw that online, but didn't want to add another include.
...int64_t n = 0, max = 0, thismax = 0;...printf("\nmax n = %lld reached at input = %d\n", max, input);...You'll get compilation warnings about the printf specifier used withNot if you use the correct specifier:
int64_t.
#include <inttypes.h>
printf("\nmax n = %" PRId64 " reached at input = %d\n", max, input);
Les messages affichés proviennent d'usenet.