diff --git a/Decimal To Binary.cpp b/Decimal To Binary.cpp index 682cb6b05..b8eaba1f1 100644 --- a/Decimal To Binary.cpp +++ b/Decimal To Binary.cpp @@ -1,6 +1,5 @@ // This function convert decimal to binary number // -#include "stdafx.h" #include using namespace std; @@ -21,4 +20,5 @@ int main() cout << "the binary is :"; cout << binary; cout << endl; + return 0; }