What are the types of data structures in c?
Explain what is the purpose of "extern" keyword in a function declaration?
What is c variable?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Do string constants represent numerical values?
Write a programe print the sum of series 0,1,2,.....10
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
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Give basis knowledge of web designing ...
What is the value of uninitialized variable in c?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }