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
What is the g value paradox?
How can I convert a number to a string?
What is the use of a static variable in c?
what are bit fields? What is the use of bit fields in a structure declaration?
Why can't I perform arithmetic on a void* pointer?
What is const and volatile in c?
Tell me with an example the self-referential structure?
application attempts to perform an operation?
What does dm mean sexually?
Differentiate fundamental data types and derived data types in C.
What is || operator and how does it function in a program?
What is the purpose of & in scanf?
How can I sort more data than will fit in memory?
Is there a way to switch on strings?
What is a void pointer? When is a void pointer used?