http://git-scm.com/bookBookThe entire Pro Git book, written by Scott Chacon and published by Apress, is available here. All content is licensed under theCreative Commons Attribution Non Commercial Share Alike 3.0 license. Print versions of the book are available onAmazon.com.1.Getting Started1.1Abou Read More
//Main.cpp#include <iostream>using namespace std;extern "C" int DoubleIt(int n);int main(){ cout<<"Value return by Double It is:" <<DoubleIt(2)<<endl; return 0;}.586.model flat,C.codeDoubleIt PROC,inval:DWORD mov eax,inval add eax,eax add eax,eax retDouble Read More