how to add numbers without using arithmetic operators.
Answer Posted / valli
#include<stdio.h>
main()
{
int a=5,b=6,s;
int *p=a;
s=&p[b];
printf("%d",s);
}
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What are the two forms of #include directive?
What is a const pointer in c?
What is the correct declaration of main?
How can you draw circles in C?
Differentiate between null and void pointers.
Explain how can you be sure that a program follows the ansi c standard?
What is d'n in c?
How can I do graphics in c?
What is a lvalue
What is malloc return c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is unary operator?
What do you mean by recursion in c?
What are header files in c programming?