What should not contain a header file?

Answer Posted / laxman

header file should contain only declarations and structure
templates.It should not contain function definitions.

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2648


How can I sort more data than will fit in memory?

626


what is the significance of static storage class specifier?

1661


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

689


Write a program to check whether a number is prime or not using c?

574






Why are algorithms important in c program?

618


What does main () mean in c?

613


can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......

1409


What is the function of volatile in c language?

664


What does it mean when a pointer is used in an if statement?

600


What is c preprocessor mean?

790


Difference between constant pointer and pointer to a constant.

609


Write a program to show the change in position of a cursor using c

578


Differentiate between ordinary variable and pointer in c.

615


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

667