#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
How can I direct output to the printer?
Explain why C language is procedural?
Why is sizeof () an operator and not a function?
What happens if header file is included twice?
Why do we use static in c?
Do you have any idea about the use of "auto" keyword?
Explain what does a function declared as pascal do differently?
Why string is used in c?
What is dynamic dispatch in c++?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is zero based addressing?
What is floating point constants?
When should you not use a type cast?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
In C language, a variable name cannot contain?