what is the function of .h in #include<stdio.h> in c ?
Answer Posted / nitesh vashist
.h is only giving indication that it is a header file.
only two types of files in c .c and .h.
if we copy stdio.h file as stdio then it will work we can
use stdio file instead of stdio.h. it will work definitely...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about the constants which help in debugging?
What are global variables and how do you declare them?
Can you subtract pointers from each other? Why would you?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What does c mean before a date?
What are the advantages of the functions?
is it possible to create your own header files?
What is huge pointer in c?
What is f'n in math?
What is the -> in c?
What does the && operator do in a program code?
Explain the difference between the local variable and global variable in c?
Why do we use int main?
How to delete a node from linked list w/o using collectons?
Is printf a keyword?