Explain the use of 'auto' keyword in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
Difference between pass by reference and pass by value?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is #error and use of it?
Write a program to generate prime factors of a given integer?
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
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
How does free() know explain how much memory to release?
Is it possible to initialize a variable at the time it was declared?
explain how do you use macro?
what is the difference between 123 and 0123 in c?