You are on page 1of 1

#include <stdio.

h>
#include <limits.h>

int main(){
unsigned int v1;
v1 = 2664044690;
int *p1;
p1 = &v1;
printf("%u\n",*p1);
printf("%d\n",INT_MAX);
return 0;
}

You might also like