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 are the different types of errors?

0 Answers  


What is %d called in c?

0 Answers  


WHAT IS LOW LEVEL LANGUAGE?

2 Answers  


What is alloca() and why is its use discouraged?

1 Answers  


Can variables be declared anywhere in c?

0 Answers  






#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


Write a code to generate a series where the next element is the sum of last k terms.

0 Answers   Aspiring Minds,


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

0 Answers  


what do you mean by enumeration constant?

0 Answers  


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;i<n1-1;i++) { if( !( (a1[i]>a1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

0 Answers   Facebook,


When should a type cast be used?

0 Answers  


What 'lex' does?

0 Answers   Tech Mahindra,


Categories