Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1774


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1089


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1217


What is malloc() function?

1235


What is the basic structure of c?

1154


What is linear search?

1182


What is size of union in c?

1081


State the difference between x3 and x[3].

1166


What's a good way to check for "close enough" floating-point equality?

1255


Can you tell me how to check whether a linked list is circular?

1498


When should a type cast be used?

1065


Calculate 1*2*3*____*n using recursive function??

2099


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1207


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2368


What is line in c preprocessor?

1101