like we have format specifiers in C to display variable values in messages
int a=5,b=6;
printf("The value of A is %d and B is %d",a,b);
So how can we produce the same in MASM 615?
I want output like this reference image
like we have format specifiers in C to display variable values in messages
int a=5,b=6;
printf("The value of A is %d and B is %d",a,b);
So how can we produce the same in MASM 615?
I want output like this reference image