#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
Why c is faster than c++?
What is the use of printf() and scanf() functions?
Is c a great language, or what?
How can I read in an object file and jump to locations in it?
p*=(++q)++*--p when p=q=1 while(q<=6)
What are static variables in c?
What is build process in c?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is difference between class and structure?
How do you sort filenames in a directory?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is an example of structure?
Where are some collections of useful code fragments and examples?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
How does placing some code lines between the comment symbol help in debugging the code?