write a c programme for add of two numbers with out use of
arthematic operators
Answers were Sorted based on User's Feedback
Answer / upendra pratap shahi
int xor, and, temp;
and = x & y;
xor = x ^ y;
while(and != 0 )
{
and <<= 1;
temp = xor ^ and;
and &= xor;
xor = temp;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ria
/*error!!! in this program if we give 28-02-2012 to 03-03-2012 then correct output is not showing*/
#include<stdio.h>
#include<conio.h>
#include<math.h>
int func(int x)
{
int y=0;
switch(x)
{
case 1: y=0;
break;
case 2: y=31;
break;
case 3: y=59;
break;
case 4: y=90;
break;
case 5: y=120;
break;
case 6: y=151;
break;
case 7: y=181;
break;
case 8: y=212;
break;
case 9: y=243;
break;
case 10: y=273;
break;
case 11: y=304;
break;
case 12: y=334;
break;
}
return y;
}
void main()
{
int day1,mon1,year1,day2,mon2,year2,ref,dd1,dd2,i;
printf("\n enter first day,month,year: ");
scanf("%d%d%d",&day1,&mon1,&year1);
printf("\n enter second day,month,year: ");
scanf("%d%d%d",&day2,&mon2,&year2);
ref=year1;
dd1=func(mon1);
dd1=dd1+day1;
dd2=0;
for(i=ref;i<year2;i++)
{
if(i%100==0)
{
if(i%400==0)
dd2++;
}
else
if(i%4==0)
dd2++;
}
dd2=dd2+func(mon2)+day2+((year2-ref)*365);
printf("\n no of days= %d",abs(dd2-dd1));
}
| Is This Answer Correct ? | 0 Yes | 1 No |
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
What are the types of functions in c?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
Why enum is used in c?
How can I swap two values without using a temporary?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Can a variable be both static and volatile in c?
Explain about the functions strcat() and strcmp()?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Can a void pointer point to a function?
Why is C language being considered a middle level language?
Code for calculating square root without using library function, of math.h