#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
What would be an example of a structure analogous to structure c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Can two or more operators such as and be combined in a single line of program code?
What is the difference between test design and test case design?
Explain two-dimensional array.
Difference between macros and inline functions? Can a function be forced as inline?
How can I determine whether a machines byte order is big-endian or little-endian?
Explain how can you determine the size of an allocated portion of memory?
What is the process to generate random numbers in c programming language?
Write a program to reverse a linked list in c.
What are the types of unary operators?
Difference between goto, long jmp() and setjmp()?
How to compare array with pointer in c?
What is const and volatile in c?
How do we print only part of a string in c?