write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / 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 |
Post New Answer View All Answers
What is scope rule of function in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Write the syntax and purpose of a switch statement in C.
How can a number be converted to a string?
What is the difference between the local variable and global variable in c?
how to capitalise first letter of each word in a given string?
What's the right way to use errno?
Why & is used in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Why is structure padding done in c?
What is a structure member in c?
what are the different storage classes in c?
Write a program with dynamically allocation of variable.
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?