how to add numbers without using arithmetic operators.

Answer Posted / srikanth

int main()
{
int a=3,b=5;
printf("
%d
",printf("%*c%*c",a,' ' ,b,' '));
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain output of printf("Hello World"-'A'+'B'); ?

987


What is register variable in c language?

614


what is stack , heap ,code segment,and data segment

2236


How can you access memory located at a certain address?

682


When would you use a pointer to a function?

597






given post order,in order construct the corresponding binary tree

2338


What are the types of arrays in c?

635


What is omp_num_threads?

595


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

627


Why does everyone say not to use gets?

620


What are the advantages of external class?

602


Tell us something about keyword 'auto'.

680


Why doesnt the call scanf work?

684


What is scanf () in c?

676


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2051