Add 2 64 bit numbers on a 32 bit machine

Answer Posted / chat4@allinterview.com

16

Is This Answer Correct ?    9 Yes 52 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

652


Does c have an equivalent to pascals with statement?

561


What is formal argument?

635


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

692


What are linked lists in c?

640






#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1246


How can I implement sets or arrays of bits?

594


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1854


What is the meaning of c in c language?

586


What is getche() function?

597


Explain what does it mean when a pointer is used in an if statement?

605


what is the function of pragma directive in c?

610


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

603


How is pointer initialized in c?

573


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

624