Skip to content

Instantly share code, notes, and snippets.

View muhiddingithub's full-sized avatar

Muhiddin Jumaniyazov muhiddingithub

View GitHub Profile
@muhiddingithub
muhiddingithub / LargeInteger.cpp
Created June 8, 2016 06:58 — forked from krisys/LargeInteger.cpp
Multiplication of Large Numbers in C++
#include<iostream>
#include<string>
#include<sstream>
#define SIZE 700
using namespace std;
class large{
int no[SIZE];
/*
array is used to store the large number.