Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: hey just try this in the Turboc++ v3 the following is a code to link asm with the c++ compiler [code] #include<iostream.h> void main() { int i=3,j=4,k; asm{ //'{' this must be put immediate to the 'asm' key word else code showserrors mov ax,i; add ax,j; mov k,ax; } cout<<k; … |
The End.