How to add two numbers without using arithmetic operators?

Answer Posted / abhishek shukla

what will be output of this programme?
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5;
clrscr();
a=a+(2,3,3,5,8,6);
printf("%d",a);
getch();
}

Is This Answer Correct ?    1 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the disadvantages of a shell structure?

697


Explain what are run-time errors?

614


Write a program to print "hello world" without using a semicolon?

600


what is event driven software and what is procedural driven software?

2019


What does char * * argv mean in c?

627






a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list

639


Is null a keyword in c?

741


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

649


How can you access memory located at a certain address?

671


Which is more efficient, a switch statement or an if else chain?

585


How do shell structures work?

576


What should malloc(0) do?

619


What does == mean in texting?

671


List some of the dynamic data structures in C?

794


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

610