how to add numbers without using arithmetic operators.
Answer Posted / srikanth
int main()
{
int a=3,b=5;
printf("
%d
",printf("%*c%*c",a,' ' ,b,' '));
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to create struct variables?
What are the advantages of using new operator as compared to the function malloc ()?
Why c is procedure oriented?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
How do I get an accurate error status return from system on ms-dos?
What is the use of ?: Operator?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Write programs for String Reversal & Palindrome check
What is union in c?
What is the 'named constructor idiom'?
Why static variable is used in c?
What’s the special use of UNIONS?
Why we use conio h in c?
How can you find the exact size of a data type in c?
Why pointers are used in c?