How to add two numbers without using arithmetic operators?
Answer Posted / nitish
why cant we just or the two numbers
| Is This Answer Correct ? | 9 Yes | 20 No |
Post New Answer View All Answers
how do you execute a c program in unix.
Linked lists -- can you tell me how to check whether a linked list is circular?
What are the uses of a pointer?
How does normalization of huge pointer works?
What is meant by keywords in c?
praagnovation
What is the use of sizeof () in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
how to write a c program to print list of fruits in alpabetical order?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is function definition in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Why can’t we compare structures?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What are the uses of null pointers?