Answer Posted / raja
a^=b^=a^=b;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is a 'null pointer assignment' error?
Explain what does it mean when a pointer is used in an if statement?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How the c program is executed?
Does c have class?
What is array of structure in c?
Can a function argument have default value?
What are high level languages like C and FORTRAN also known as?
What is dynamic variable in c?
How do c compilers work?
What is the difference between pure virtual function and virtual function?
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
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
How do we make a global variable accessible across files? Explain the extern keyword?