#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
Write a code of a general series where the next element is the sum of last k terms.
What is structure pointer in c?
What is the best way of making my program efficient?
what is the difference between class and unio?
What is the advantage of using #define to declare a constant?
What is switch in c?
How does sizeof know array size?
What is #line?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Write a program for Overriding.
Why is c called "mother" language?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What are # preprocessor operator in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays