#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
How was c created?
What is calloc() function?
What is the use of printf() and scanf() functions?
What is dynamic variable in c?
Can you pass an entire structure to functions?
What is pointers in c?
write a program to create a sparse matrix using dynamic memory allocation.
Is Exception handling possible in c language?
Why are all header files not declared in every c program?
Write a code to remove duplicates in a string.
Why does the call char scanf work?
Are negative numbers true in c?
What should malloc() do?
What is the use of static variable in c?
Why c is faster than c++?