Add 2 64 bit numbers on a 32 bit machine
Answers were Sorted based on User's Feedback
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 |
Can we change the value of #define in c?
What is the difference between local variable and global variable in c?
Explain what header files do I need in order to define the standard library functions I use?
what is pointer ?
10 Answers Kernex Micro Systems,
Why c is called a middle level language?
How pointer is different from array?
What is queue in c?
What is c value paradox explain?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
When should the register modifier be used? Does it really help?
What is oops c?
mplementation of stack using any programing language