Cheryl F. answered 05/04/19
Tutor
New to Wyzant
Scientific Programming is Science aided by Software
Use the flag %llu instead of %ul in the printf, for the number's value:
#include <stdio.h>
int main(){
unsigned long long thingull = 3022123456789101167;
printf ("%llu\n", thingull);
}