How to add two numbers without using arithmetic operators?
Answer Posted / ranjith
#include<stdio.h>
main()
{
int a=5,b=4,c;
c=a||b;
printf("sum="+c);
}
Is This Answer Correct ? | 2 Yes | 21 No |
Post New Answer View All Answers
What is dangling pointer in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
What is the difference between text files and binary files?
Why is a semicolon (;) put at the end of every program statement?
What is the best way to comment out a section of code that contains comments?
Is it better to use a macro or a function?
How many bytes is a struct in c?
How can you restore a redirected standard stream?
What are dangling pointers in c?
Define Array of pointers.
Explain what is the stack?
Compare array data type to pointer data type
Write a program to know whether the input number is an armstrong number.
What are directives in c?