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
What is a pointer and how it is initialized?
can anyone please tell about the nested interrupts?
Write a code on reverse string and its complexity.
why programs in c are running with out #include
What are the advantage of c language?
How do you convert strings to numbers in C?
What is c token?
What is a loop?
What is an example of structure?
What is f'n in math?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain what is the difference between a free-standing and a hosted environment?
Why is c faster?
How can type-insensitive macros be created?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above