Question:What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
  asm{
    mov bx,8;
    mov cx,10
    add bx,cx;
  }
  printf("%d",_BX);
  return 0;

A 18 

B 8 

C 0 

D Compiler error 

E None 

+ Answer
+ Report
Total Preview: 1239

Copyright © 2024. Powered by Intellect Software Ltd