Update Decimal To Binary.cpp

This commit is contained in:
Ashwek Swamy
2019-02-09 12:54:49 +05:30
committed by GitHub
parent 210a0d47f4
commit e9dadc0148

View File

@@ -1,6 +1,5 @@
// This function convert decimal to binary number
//
#include "stdafx.h"
#include <iostream>
using namespace std;
@@ -21,4 +20,5 @@ int main()
cout << "the binary is :";
cout << binary;
cout << endl;
return 0;
}