Frågan#1
Har denna kod:
#include <NTL/ZZ.h>
#include <iostream>
using namespace std;
int main()
{
ZZ tal;
tal = 2^1000;
std::cout << tal << "\n";
return 0;
}
Får detta felmeddelande:
error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class ZZ' (or there is no acceptable conversion)
Varför?