#include<stdio.h>
#include<conio.h>
void main()
{
float a;
clrscr();
a=0.5;
if(a==0.5)
printf("yes");
else
printf("no");
getch();
}
Answer Posted / maniac
yes
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can you tell whether two strings are the same?
What is a spanning Tree?
What is an identifier?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is a macro in c preprocessor?
How are Structure passing and returning implemented by the complier?
int i=10; printf("%d %d %d", i, i=20, i);
What are the 4 types of functions?
Tell us the use of fflush() function in c language?
What is the use of ?
What is infinite loop?
How does pointer work in c?
What is volatile keyword in c?
What is pointer in c?
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