cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Is it possible to inline assembly langua
Is it possible to inline assembly language inside c++ program?
Mar 22, 2010 at 2:33pm UTC
unregistered
(199)
I know its possible with c but I am aware that there are minor differences between c and c++ even though c++ is considered a superset of c for the most part
Mar 22, 2010 at 3:12pm UTC
hamsterman
(4538)
yes it is. example:
1
2
3
__asm{ mov eax, 0 }
Mar 22, 2010 at 3:21pm UTC
Bazzy
(6281)
The standard syntax is
asm
(
"mov eax, 0"
);
Topic archived. No new replies allowed.