
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# Math.BigMul Method
Use the Math.BigMul() method to find the product of two 32-bit numbers.
The following are our two numbers.
int one = 345272828; int two = 887685744;
Now, get the product.
long res; res = Math.BigMul(one, two);
Example
using System; using System.Globalization; class Demo { static void Main() { int one = 345272828; int two = 887685744; long res; res = Math.BigMul(one, two); Console.WriteLine("{0} * {1} = {2}", one, two, res); } }
Output
345272828 * 887685744 = 306493767206164032
- Related Questions & Answers
- Math.BigMul() Method in C#
- The globals(), locals() and reload() Functions in Python
- The time Module in Python
- The calendar Module in Python
- The Anonymous Functions in Python
- The return Statement in Python
- The import Statements in Python
- The Threading Module in Python
- The match Function in Python
- The search Function in Python
- Checking an array for palindromes - JavaScript
- Recursive multiplication in array - JavaScript
- Passing static methods as arguments in PHP
- Using XPATH to search text containing  
- How to parse JSON object in iPhone/iOS?
Advertisements