get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
3 5037input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
IBM,
4 6129Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
1 4092
Are there constructors in c?
What does malloc () calloc () realloc () free () do?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What does c value mean?
What is meant by int main ()?
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
Who developed c language and when?
What is malloc() function?
Why do we use namespace feature?
Are the variables argc and argv are always local to main?
What are the modifiers available in c programming language?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is function prototype in c language?
What do you mean by dynamic memory allocation in c? What functions are used?
Why should I prototype a function?