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 is structure pointer in c?
What are the advantages and disadvantages of a heap?
What is the difference between text and binary i/o?
Explain the binary height balanced tree?
Can a program have two main functions?
What is an array in c?
What is static function in c?
what is the role you expect in software industry?
What is unary operator?
What is a method in c?
What does d mean?
What is formal argument?
What are actual arguments?
How many levels of pointers can you have?
Explain can you assign a different address to an array tag?