What is difference between && and & in c?
No Answer is Posted For this Question
Be the First to Post Answer
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
what is the difference between structural,object based,object orientd programming languages?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Can stdout be forced to print somewhere other than the screen?
How do you determine whether to use a stream function or a low-level function?
Explain what is the difference between a free-standing and a hosted environment?
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
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
write a program which counts a product of array elements lower than 10.
How can I call a function, given its name as a string?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none