int main ()
{
//http://cboard.cprogramming.com/c-programming/92920-scanf-long-long.htmllonglongint test;
printf ("Enter long long int: ");
scanf ("%I64d", &test);
printf ("%I64d", test);
// cin >> test;
// cout << "\n\n" << test;
system ("pause"); // remove if you don't use Visual Studio
return 0;
}
@Thomas When I write the subscript I get the warning: warning: length modifier 'I64' results in undefined behavior or no effect with 'd' conversion specifier [-Wformat]