What is the purpose of sprintf?
No Answer is Posted For this Question
Be the First to Post Answer
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
what is the basis for selection of arrays or pointers as data structure in a program
What is %g in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
differnce between do and do while
What is the difference between malloc calloc and realloc in c?
What is the difference between array_name and &array_name?
How to throw some light on the b tree?
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‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Where are the auto variables stored?