write a c program to add two integer numbers without using
arithmetic operator +
Answers were Sorted based on User's Feedback
Answer / jithender palle(vaagdevi wgl)
main()
{
int a=10,b=30,c;
c=a|b;
printf("%d",c);
}
| Is This Answer Correct ? | 8 Yes | 21 No |
Answer / anbuchristi
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\n Enter The Number:");
scanf("%d",&a);
printf("\n Enter the Number:");
scanf("%d",&b);
c=a+b;
printf("\n The Result Is");
printf("\n ~~~ ~~~~~~ ~~");
printf("%d",c);
getch();
}
| Is This Answer Correct ? | 20 Yes | 74 No |
Write a factorial program using C.
Explain do array subscripts always start with zero?
write a programming in c language, 1 3 5 7 9 11
What are directives in c?
Describe dynamic data structure in c programming language?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
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 is the purpose of realloc()?
program in c to print 1 to 100 without using loop
What are qualifiers and modifiers c?
Explain what is the difference between null and nul?
Will Macros support multiple arguments ?