From e9dadc014870c6366fd9c5c271f9f36ab43c7c6d Mon Sep 17 00:00:00 2001 From: Ashwek Swamy <39827514+ashwek@users.noreply.github.com> Date: Sat, 9 Feb 2019 12:54:49 +0530 Subject: [PATCH] Update Decimal To Binary.cpp --- Decimal To Binary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }