@whizkidaniket-5IiBCq
•
Oct 25, 2024
Oct 25, 2024
1.2K
Calculations using Command Prompt!
The command processor CMD.EXE can perform simple arithmetic on 32-bit signed integers:
Eg:
C:\>set /a 5+5
10
C:\>set /a 4*(8/2)
16
C:\>set /a (4*8)/4
8
For more information, type 'set...