#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 / valli
why is it taking those two arguments?what is the need of
them?why we are taking integer and character arguments???
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is spark map function?
Define recursion in c.
Write a program to generate random numbers in c?
How can you increase the size of a statically allocated array?
Is printf a keyword?
How can I implement sets or arrays of bits?
How is a macro different from a function?
Explain the Difference between the New and Malloc keyword.
Can you please explain the scope of static variables?
Is c is a middle level language?
What is a loop?
Explain what is the purpose of "extern" keyword in a function declaration?
What is a char in c?
What is d'n in c?
Can I initialize unions?