/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* WAP to multiply and divide a number by 4 without using multiplication and division operator. */ #include int main() { int num, multi, div; printf("Enter the number : "); scanf("%d", &num); multi = num << 2; div = num >> 2; printf("Multiplication : %d" "\nDivision : %d", multi, div); return 0; }