2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / manoj kumar
36
| Is This Answer Correct ? | 73 Yes | 16 No |
Post New Answer View All Answers
Can the size of an array be declared at runtime?
What is meant by 'bit masking'?
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
Lists the benefits of c programming language?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Is c weakly typed?
what are the different storage classes in c?
What do you mean by dynamic memory allocation in c?
What are preprocessor directives in c?
Write a program to reverse a given number in c language?
Can a pointer be volatile in c?
what is the significance of static storage class specifier?
What is difference between array and structure in c?
what will be maximum number of comparisons when number of elements are given?