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
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What are the primitive data types in c?
What is meant by operator precedence?
What do the functions atoi(), itoa() and gcvt() do?
What are the types of unary operators?
Why can't I perform arithmetic on a void* pointer?
What is double pointer?
What is difference between union All statement and Union?
What is d'n in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is a constant?
What is infinite loop?
Write a program to print factorial of given number using recursion?
What do you understand by friend-functions? How are they used?
What is getch c?