#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
Post New Answer View All Answers
develop algorithms to add polynomials (i) in one variable
Are pointers integers in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What are the different types of control structures in programming?
How can you find the day of the week given the date?
What are structure members?
What are the different types of errors?
write a program to print largest number of each row of a 2D array
What is meant by high-order and low-order bytes?
What are # preprocessor operator in c?
What is const and volatile in c?
What is extern keyword in c?
What is assert and when would I use it?
Why do we need arrays in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.