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


Please Help Members By Posting Answers For Below Questions

What is structure pointer in c?

749


What are the advantages and disadvantages of a heap?

860


What is the difference between text and binary i/o?

744


Explain the binary height balanced tree?

884


Can a program have two main functions?

801






What is an array in c?

761


What is static function in c?

798


what is the role you expect in software industry?

1843


What is unary operator?

827


What is a method in c?

784


What does d mean?

750


What is formal argument?

846


What are actual arguments?

812


How many levels of pointers can you have?

890


Explain can you assign a different address to an array tag?

820