what is the function of .h in #include<stdio.h> in c ?
Answer Posted / chhavram singh
.h is a extension of #include<stdio.h> because it have all
working or definition of its header file without .h we can
not connect system libraries.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a void pointer? When is a void pointer used?
Do you know the difference between exit() and _exit() function in c?
Difference between MAC vs. IP Addressing
How can you access memory located at a certain address?
What are local static variables?
What is the difference between constant pointer and constant variable?
Explain the Difference between the New and Malloc keyword.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are header files in c programming?
What is function and its example?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is the use of #include in c?
Write a code on reverse string and its complexity.
What is the time and space complexities of merge sort and when is it preferred over quick sort?