what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
2 8171dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
1 4907Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
9 12075write a recursive program in'c'to find whether a given five digit number is a palindrome or not
2 6716write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
1 4327
Is stack a keyword 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
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
why do some people write if(0 == x) instead of if(x == 0)?
What happens if header file is included twice?
How will you divide two numbers in a MACRO?
In C language, a variable name cannot contain?
Is c procedural or functional?
What is the mean of function?
Why should I use standard library functions instead of writing my own?
Find MAXIMUM of three distinct integers using a single C statement
What is #define in c?
What is the explanation for modular programming?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Why pointers are used?