Is it possible to inline assembly language inside c++ program?

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
yes it is. example:
1
2
3
__asm{
    mov eax, 0
}
The standard syntax is
asm("mov eax, 0");
Topic archived. No new replies allowed.