Download Pelles C here: http://www.pellesc.se
.386
.model flat,stdcall
option casemap:none
includelib \PellesC\lib\Win\kernel32.lib
includelib \PellesC\lib\Win\user32.lib
ExitProcess PROTO :DWORD
printfX PROTO C format:DWORD,args:VARARG
.data
format1 db 'This is a % % to % %',0
str1 db 'printfX',0
str2 db 'demo',0
str3 db 'type',0
str4 db 'strings.',0
.code
start:
invoke printfX,ADDR format1,
ADDR str1,ADDR str2,
ADDR str3,ADDR str4
invoke ExitProcess,0
END start


Page created in 0.060 seconds with 15 queries.