Answer Posted / guest
it is a simple English alphabet C nothing else.
| Is This Answer Correct ? | 8 Yes | 49 No |
Post New Answer View All Answers
What is adt in c programming?
what is the height of tree if leaf node is at level 3. please explain
code for find determinent of amatrix
What are the advantages and disadvantages of c language?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Does c have an equivalent to pascals with statement?
What does c mean in standard form?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Is javascript based on c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
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
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is bubble sort in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.