#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
Thank u so much..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is pointer & why it is used?
How do you search data in a data file using random access method?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Explain the properties of union. What is the size of a union variable
Is int a keyword in c?
Explain what does a function declared as pascal do differently?
What is property type c?
What is the difference between struct and union in C?
Write a program to check palindrome number in c programming?
Why do we use static in c?
What is #define?
explain what is an endless loop?
Can we initialize extern variable in c?
What is anagram in c?
What is extern keyword in c?