Add 2 64 bit numbers on a 32 bit machine

Answers were Sorted based on User's Feedback



Add 2 64 bit numbers on a 32 bit machine..

Answer / ravi

add 32 bit part of each number first and and then other
32 bit part use the carry register as well in the process

Is This Answer Correct ?    55 Yes 3 No

Add 2 64 bit numbers on a 32 bit machine..

Answer / kkm

8

Is This Answer Correct ?    2 Yes 20 No

Add 2 64 bit numbers on a 32 bit machine..

Answer / chat4@allinterview.com

16

Is This Answer Correct ?    9 Yes 52 No

Post New Answer

More C Interview Questions

what is c

1 Answers  


void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?

8 Answers   Wipro,


a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'

2 Answers  


why do we use # in c-language?

1 Answers  


Can we declare a function inside a function in c?

0 Answers  


int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?

2 Answers  


Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.

2 Answers   Scientific Atlanta, Wipro,


Find occurence of a character in a sting.

3 Answers   TCS,


Explain what are run-time errors?

0 Answers  


Can we change the value of #define in c?

0 Answers  


what do u mean by Direct access files? then can u explain about Direct Access Files?

0 Answers   LG Soft,


what is difference b/w extern & volatile variable??

6 Answers   Teleca,


Categories