Posted onEdited onDisqus: Symbols count in article: 209Reading time ≈1 mins.
1 2 3 4 5 6 7 8 9 10 11 12
#include<iostream> usingnamespacestd;
intmain(){ // your code goes here size_t x = 0; auto j = x - 1; cout << j << endl; // 18446744073709551615 int i = j; cout << i << endl; // -1 return0; }