#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
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Is anything faster than c?
Without Computer networks, Computers will be half the use. Comment.
Explain bitwise shift operators?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What is advantage of pointer in c?
What is the difference between array and linked list in c?
what are the advantages of a macro over a function?
What are the features of c languages?
Write a program on swapping (100, 50)
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Describe the difference between = and == symbols in c programming?
Explain what are reserved words?
How can you allocate arrays or structures bigger than 64K?
How to delete a node from linked list w/o using collectons?