What should not contain a header file?
Answers were Sorted based on User's Feedback
Answer / laxman
header file should contain only declarations and structure
templates.It should not contain function definitions.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / ada
Head file should not contain defining instances of global
variables and function bodies.
| Is This Answer Correct ? | 1 Yes | 1 No |
program to find the roots of a quardratic equation
Can we initialize extern variable in c?
What is extern keyword in c?
What is assignment operator?
What is the use of getch ()?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
Explain what are the different file extensions involved when programming in c?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
What is pre-emptive data structure and explain it with example?