#include<stdio.h>
#include<stdlib.h>
int main()
{
long long int n;
char c[200];
scanf("%lld",&n);
itoa(n*n*n*n,c,10);
printf("%s",c);
}
input: 90625
output: -1726117887
basically, my code is calculating n^4 and converting it into a string. but the problem is I am not able to do so for bigger numbers. please resolve my issue.