What is the sizeof () a pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How can a number be converted to a string?
How does the assert() function work?
the data type used for unlimited value in c and how to do this program
In C programming, what command or code can be used to determine if a number of odd or even?
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What are structures and unions? State differencves between them.
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
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
write a c program in such a way that if we enter the today date the output should be next day's date.