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 |
what is c
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
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'
why do we use # in c-language?
Can we declare a function inside a function in c?
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?
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.
Explain what are run-time errors?
Can we change the value of #define in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
what is difference b/w extern & volatile variable??