#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
Post New Answer View All Answers
What is a pragma?
Whats s or c mean?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
what is the format specifier for printing a pointer value?
Explain how do you list files in a directory?
What is NULL pointer?
Why can't I perform arithmetic on a void* pointer?
What does emoji p mean?
Can one function call another?
What is structure in c definition?
What are the advantages of the functions?
Explain what does the function toupper() do?
why return type of main is not necessary in linux
Who developed c language and when?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)