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 the use of bit fieild.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Are negative numbers true in c?
Are c and c++ the same?
How are Structure passing and returning implemented by the complier?
How can I write functions that take a variable number of arguments?
Write a simple code fragment that will check if a number is positive or negative.
Why is c faster?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Should I learn c before c++?
c language interview questions & answer
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are comments and how do you insert it in a C program?
Why is c platform dependent?