#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
What is the difference between union and anonymous union?
In C, What is the #line used for?
What is the purpose of main() function?
What are identifiers c?
Can variables be declared anywhere in c?
Can you please explain the scope of static variables?
What is the return type of sizeof?
How many levels of pointers have?
What is the scope of static variable in c?
What are the data types present in c?
What is difference between %d and %i in c?
How many levels of pointers can you have?
what is a constant pointer in C
When should we use pointers in a c program?
What is integer constants?