#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
simple program of graphics and their output display
What is wrong with this initialization?
How would you rename a function in C?
What is volatile, register definition in C
When should a type cast be used?
How can you determine the maximum value that a numeric variable can hold?
Explain how are 16- and 32-bit numbers stored?
what are enumerations in C
What are the benefits of c language?
Differentiate between a structure and a union.
How do you print an address?
Which header file is used for clrscr?
What will be your course of action for a push operation?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
what do the 'c' and 'v' in argc and argv stand for?