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
Explain how can you avoid including a header more than once?
What is the use of header files?
What does %c do in c?
What are the usage of pointer in c?
What is %d called in c?
What is an arrays?
What is bubble sort technique in c?
Distinguish between actual and formal arguments.
List a few unconditional control statement in c.
Where in memory are my variables stored?
Does c have enums?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is array of pointers to string?
How can you invoke another program from within a C program?
Explain how to reverse singly link list.