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 |
Explain what is output redirection?
If errno contains a nonzero number, is there an error?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
what is difference between overriding and overloading?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Can you apply link and association interchangeably?
give an example of type casting by a simple c program
Write the Program to reverse a string using pointers.
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
how to find anagram without using string functions using only loops in c programming