#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 the advantage of using #define to declare a constant?
What are the storage classes in C?
What is declaration and definition in c?
Give differences between - new and malloc() , delete and free() ?
What is call by value in c?
Is this program statement valid? INT = 10.50;
Explain Function Pointer?
Is null equal to 0 in sql?
What is the -> in c?
What is the best way to store flag values in a program?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Explain how can I make sure that my program is the only one accessing a file?
How can you increase the allowable number of simultaneously open files?
When was c language developed?