/in/foo.cc: In function 'int main(int, char**)':
/in/foo.cc:24:13: warning: 'bi.BigInt::value' may be used uninitialized in this function [-Wmaybe-uninitialized]
value[0] = 0;
~~~~~~~~~^~~
/in/foo.cc:225:9: note: 'bi.BigInt::value' was declared here
BigInt bi(x), ans(1);
^~
/in/foo.cc:29:20: warning: 'ans.BigInt::value' is used uninitialized in this function [-Wuninitialized]
value[bitNum++] = x % 10;
~~~~~~~~~~~~~~~~^~~~~~~~
/in/foo.cc:225:16: note: 'ans.BigInt::value' was declared here
BigInt bi(x), ans(1);
^~~
/in/foo.cc:24:13: warning: 'res.BigInt::value' may be used uninitialized in this function [-Wmaybe-uninitialized]
value[0] = 0;
~~~~~~~~~^~~
/in/foo.cc:83:10: note: 'res.BigInt::value' was declared here
BigInt res(0);
^~~