Why Your "1TB" Laptop Shows Only 931GB: MiB vs MB Explained
Decimal Byte vs Binary Byte (iB Units)
Sep 5, 20252 min read12

Search for a command to run...
Articles tagged with #bits
Decimal Byte vs Binary Byte (iB Units)

Introduction When we learn about swapping of 2 variables , we find 2 common methods -1. Using a temporary variable2. Using the xor trick #include <iostream> using namespace std; void swapWithTemp(int &x, int &y){ int temp = x; x = y; y =...