#include <stdio.h>
int main ( int argc, char* argv [ ] )
{
int value1 = 10;
int value2 = 5;
printf ( "\n The sum is :%d", value1 | value2 );
}
This is the answer asked by some one to add two numbers
with out using arithmetic operator?Yes this answer is write
it given out put as 15.But how?????
what is need of following line?
int main ( int argc, char* argv [ ] )
how it work?what is the meaning for this line?
please explain me.Advance thanks
Answer Posted / manojkumar
hello deepak sir
ur answer is exactly write.Thank you sir.
But i want to know the meaning or this and how it work?
will u please explain me?
thanks.
what is need of following line?
int main ( int argc, char* argv [ ] )
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
List some of the static data structures in C?
What are the different types of constants?
Explain the use of 'auto' keyword
What is meant by high-order and low-order bytes?
Is null valid for pointers to functions?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
how to find binary of number?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is "Duff's Device"?
Difference between goto, long jmp() and setjmp()?
Calculate 1*2*3*____*n using recursive function??
Is calloc better than malloc?
the question is that what you have been doing all these periods (one year gap)
Explain what is the difference between a string and an array?
Can a pointer be volatile in c?