how to add numbers without using arithmetic operators.
Answer Posted / autojack
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5,x=10,c;
clrscr();
c=a|x;
printf("%d",c);
getch();
}
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
How does pointer work in c?
Is c is a procedural language?
What is the difference between #include and #include 'file' ?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain the red-black trees?
How can I read/write structures from/to data files?
What is double pointer in c?
What are variables c?
What is calloc() function?
write a program to print largest number of each row of a 2D array
Explain modulus operator.
What is const volatile variable in c?
In a byte, what is the maximum decimal number that you can accommodate?
What is null in c?
What is variable and explain rules to declare variable in c?